🚧 fixed a warning

pull/435/head
Niels Lohmann 2017-01-24 12:49:38 +01:00
parent 3857e55290
commit 030cf674ef
1 changed files with 1 additions and 1 deletions

View File

@ -668,7 +668,7 @@ TEST_CASE("custom serializer that does adl by default", "[udt]")
{
using json = nlohmann::json;
auto me = udt::person{23, "theo", udt::country::france};
auto me = udt::person{{23}, {"theo"}, udt::country::france};
json j = me;
custom_json cj = me;