From 030cf674ef93992a789e513be82908af56e3005e Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Tue, 24 Jan 2017 12:49:38 +0100 Subject: [PATCH] :construction: fixed a warning --- test/src/unit-udt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/unit-udt.cpp b/test/src/unit-udt.cpp index 4231e6870..241336f39 100644 --- a/test/src/unit-udt.cpp +++ b/test/src/unit-udt.cpp @@ -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;