👌 mitigating cppcheck bug #1101
This commit is contained in:
parent
4639bb2c8f
commit
1c6b332dcd
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ This serializer ignores the template arguments and uses ADL
|
|||
([argument-dependent lookup](http://en.cppreference.com/w/cpp/language/adl))
|
||||
for serialization.
|
||||
*/
|
||||
template<typename = void, typename = void>
|
||||
template<typename T = void, typename SFINAE = void>
|
||||
struct adl_serializer;
|
||||
|
||||
template<template<typename U, typename V, typename... Args> class ObjectType =
|
||||
|
|
|
@ -70,7 +70,7 @@ This serializer ignores the template arguments and uses ADL
|
|||
([argument-dependent lookup](http://en.cppreference.com/w/cpp/language/adl))
|
||||
for serialization.
|
||||
*/
|
||||
template<typename = void, typename = void>
|
||||
template<typename T = void, typename SFINAE = void>
|
||||
struct adl_serializer;
|
||||
|
||||
template<template<typename U, typename V, typename... Args> class ObjectType =
|
||||
|
|
Loading…
Reference in a new issue