File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -115,13 +115,15 @@ rfl::cbor::write(homer);
115115rfl::flexbuf::write(homer);
116116rfl::msgpack::write(homer);
117117rfl::toml::write(homer);
118+ rfl::ubjson::write(homer);
118119rfl::xml::write(homer);
119120
120121rfl::bson::read<Person>(bson_bytes);
121122rfl::cbor::read<Person>(cbor_bytes);
122123rfl::flexbuf::read<Person>(flexbuf_bytes);
123124rfl::msgpack::read<Person>(msgpack_bytes);
124125rfl::toml::read<Person>(toml_string);
126+ rfl::ubjson::read<Person>(ubjson_bytes);
125127rfl::xml::read<Person>(xml_string);
126128```
127129
@@ -635,7 +637,7 @@ To run the tests, do the following:
635637./build/tests/msgpack/reflect-cpp-msgpack-tests
636638./build/tests/json/reflect-cpp-json-tests
637639./build/tests/toml/reflect-cpp-toml-tests
638- ./build/tests/toml /reflect-cpp-ubjson-tests
640+ ./build/tests/ubjson /reflect-cpp-ubjson-tests
639641./build/tests/xml/reflect-cpp-xml-tests
640642./build/tests/yaml/reflect-cpp-yaml-tests
641643```
You can’t perform that action at this time.
0 commit comments