remove constraints on JSONSerializer instances, constrain correctly new methods

This commit is contained in:
Théo DELRIEU 2016-11-16 23:20:05 +01:00 committed by Théo DELRIEU
parent 23bd2bce35
commit 88819449c2
2 changed files with 70 additions and 30 deletions

View file

@ -397,7 +397,7 @@ struct my_serializer
}
};
/*using my_json = nlohmann::basic_json<std::map, std::vector, std::string, bool,
using my_json = nlohmann::basic_json<std::map, std::vector, std::string, bool,
std::int64_t, std::uint64_t, double,
std::allocator, my_serializer>;
@ -430,4 +430,3 @@ TEST_CASE("custom serializer")
CHECK(pod2 == pod);
}
}
*/