mstch/test/data/recursion_with_same_names.h

9 lines
257 B
C
Raw Normal View History

2015-04-10 02:41:27 +08:00
auto data = mstch::object{
{"name", std::string{"name"}},
{"description", std::string{"desc"}},
{"terms", mstch::array{
mstch::object{{"name", std::string{"t1"}}, {"index", 0}},
mstch::object{{"name", std::string{"t2"}}, {"index", 1}}
}}
};