diff --git a/include/verilated_types.h b/include/verilated_types.h index 743ac59a6..21371bd47 100644 --- a/include/verilated_types.h +++ b/include/verilated_types.h @@ -891,8 +891,8 @@ public: } }; -template -std::string VL_TO_STRING(const VlQueue& obj) { +template +std::string VL_TO_STRING(const VlQueue& obj) { return obj.to_string(); } diff --git a/test_regress/t/t_queue.v b/test_regress/t/t_queue.v index 3c5db893c..f48a666ef 100644 --- a/test_regress/t/t_queue.v +++ b/test_regress/t/t_queue.v @@ -104,6 +104,7 @@ module t (/*AUTOARG*/ begin // Strings string q[$]; + string p[$:3]; string v; int j = 0; @@ -134,6 +135,7 @@ module t (/*AUTOARG*/ //Unsup: `checkh(q[$], "b2"); v = $sformatf("%p", q); `checks(v, "'{\"f2\", \"f1\", \"b1\", \"b2\"} "); + v = $sformatf("%p", p); `checks(v, "'{}"); //Unsup: q.delete(1); //Unsup: v = q[1]; `checks(v, "b1");