Skip to content

Commit 5e700cc

Browse files
author
barcode
committed
readd suppress for cppcheck
1 parent b2f9dc0 commit 5e700cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/nlohmann/json_fwd.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ template<template<typename U, typename V, typename... Args> class ObjectType =
3636
template<typename U> class AllocatorType = std::allocator,
3737
template<typename T, typename SFINAE = void> class JSONSerializer =
3838
adl_serializer,
39-
class BinaryType = std::vector<std::uint8_t>,
39+
class BinaryType = std::vector<std::uint8_t>, // cppcheck-suppress syntaxError
4040
class CustomBaseClass = void>
4141
class basic_json;
4242

single_include/nlohmann/json.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3182,7 +3182,7 @@ template<template<typename U, typename V, typename... Args> class ObjectType =
31823182
template<typename U> class AllocatorType = std::allocator,
31833183
template<typename T, typename SFINAE = void> class JSONSerializer =
31843184
adl_serializer,
3185-
class BinaryType = std::vector<std::uint8_t>,
3185+
class BinaryType = std::vector<std::uint8_t>, // cppcheck-suppress syntaxError
31863186
class CustomBaseClass = void>
31873187
class basic_json;
31883188

0 commit comments

Comments
 (0)