1
0
mirror of https://github.com/nlohmann/json synced 2024-09-19 14:20:01 +00:00

Fix for incorrect function name in documentation example (#4342)

This commit is contained in:
Alex Prabhat Bara 2024-04-10 21:47:47 +05:30 committed by GitHub
parent 377c767aa1
commit c883fb0f17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -265,7 +265,7 @@ struct bad_serializer
}
template <typename BasicJsonType>
static void to_json(const BasicJsonType& j, T& value) {
static void from_json(const BasicJsonType& j, T& value) {
// this calls BasicJsonType::json_serializer<T>::from_json(j, value);
// if BasicJsonType::json_serializer == bad_serializer ... oops!
value = j.template template get<T>(); // oops!