Fix bound queue printing (#5032)

This commit is contained in:
Aleksander Kiryk 2024-04-30 03:52:06 +02:00 committed by GitHub
parent 3f625fc359
commit 8e0301c287
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -891,8 +891,8 @@ public:
}
};
template <class T_Value>
std::string VL_TO_STRING(const VlQueue<T_Value>& obj) {
template <class T_Value, size_t T_MaxSize>
std::string VL_TO_STRING(const VlQueue<T_Value, T_MaxSize>& obj) {
return obj.to_string();
}

View File

@ -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");