mstch/test/data/null_lookup_object.h

15 lines
358 B
C
Raw Normal View History

2015-04-09 20:41:27 +02:00
auto data = mstch::object{
{"name", std::string{"David"}},
{"twitter", std::string{"@dasilvacontin"}},
{"fobject", mstch::array{
mstch::object{
{"name", std::string{"Flor"}},
{"twitter", std::string{"@florrts"}}
},
mstch::object{
{"name", std::string{"Miquel"}},
{"twitter", mstch::node{}}
}
}}
};