1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-28 12:02:00 +03:00

Merge branch 'develop' into feature/sax2

This commit is contained in:
Niels Lohmann
2018-05-27 14:26:13 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ This serializer ignores the template arguments and uses ADL
([argument-dependent lookup](http://en.cppreference.com/w/cpp/language/adl)) ([argument-dependent lookup](http://en.cppreference.com/w/cpp/language/adl))
for serialization. for serialization.
*/ */
template<typename = void, typename = void> template<typename T = void, typename SFINAE = void>
struct adl_serializer; struct adl_serializer;
template<template<typename U, typename V, typename... Args> class ObjectType = template<template<typename U, typename V, typename... Args> class ObjectType =

View File

@ -70,7 +70,7 @@ This serializer ignores the template arguments and uses ADL
([argument-dependent lookup](http://en.cppreference.com/w/cpp/language/adl)) ([argument-dependent lookup](http://en.cppreference.com/w/cpp/language/adl))
for serialization. for serialization.
*/ */
template<typename = void, typename = void> template<typename T = void, typename SFINAE = void>
struct adl_serializer; struct adl_serializer;
template<template<typename U, typename V, typename... Args> class ObjectType = template<template<typename U, typename V, typename... Args> class ObjectType =