We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94939be commit 2b28343Copy full SHA for 2b28343
Dice/DiceAttrVar.cpp
@@ -721,7 +721,8 @@ AttrVar::AttrVar(const fifo_json& j) {
721
case fifo_json::value_t::object:
722
case fifo_json::value_t::array:
723
type = Type::Table;
724
- new(&table) AttrObject(AnysTable(j));
+ new(&table) AttrObject();
725
+ table->from_json(j);
726
break;
727
case fifo_json::value_t::string:
728
type = Type::U8String;
0 commit comments