Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
ddda67a0
Commit
ddda67a0
authored
Oct 30, 2019
by
Anthony Van Herrewege
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't capture json input by value (fixed #1822).
parent
fb9a2643
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
48 deletions
+48
-48
include/nlohmann/detail/macro_scope.hpp
include/nlohmann/detail/macro_scope.hpp
+24
-24
single_include/nlohmann/json.hpp
single_include/nlohmann/json.hpp
+24
-24
No files found.
include/nlohmann/detail/macro_scope.hpp
View file @
ddda67a0
...
...
@@ -78,30 +78,30 @@
@def NLOHMANN_JSON_SERIALIZE_ENUM
@since version 3.4.0
*/
#define NLOHMANN_JSON_SERIALIZE_ENUM(ENUM_TYPE, ...) \
template<typename BasicJsonType> \
inline void to_json(BasicJsonType& j, const ENUM_TYPE& e) \
{ \
static_assert(std::is_enum<ENUM_TYPE>::value, #ENUM_TYPE " must be an enum!"); \
static const std::pair<ENUM_TYPE, BasicJsonType> m[] = __VA_ARGS__; \
auto it = std::find_if(std::begin(m), std::end(m), \
[e](const std::pair<ENUM_TYPE, BasicJsonType>& ej_pair) -> bool \
{ \
return ej_pair.first == e; \
}); \
j = ((it != std::end(m)) ? it : std::begin(m))->second; \
} \
template<typename BasicJsonType> \
inline void from_json(const BasicJsonType& j, ENUM_TYPE& e) \
{ \
static_assert(std::is_enum<ENUM_TYPE>::value, #ENUM_TYPE " must be an enum!"); \
static const std::pair<ENUM_TYPE, BasicJsonType> m[] = __VA_ARGS__; \
auto it = std::find_if(std::begin(m), std::end(m), \
[j](const std::pair<ENUM_TYPE, BasicJsonType>& ej_pair) -> bool \
{ \
return ej_pair.second == j; \
}); \
e = ((it != std::end(m)) ? it : std::begin(m))->first; \
#define NLOHMANN_JSON_SERIALIZE_ENUM(ENUM_TYPE, ...)
\
template<typename BasicJsonType>
\
inline void to_json(BasicJsonType& j, const ENUM_TYPE& e)
\
{
\
static_assert(std::is_enum<ENUM_TYPE>::value, #ENUM_TYPE " must be an enum!");
\
static const std::pair<ENUM_TYPE, BasicJsonType> m[] = __VA_ARGS__;
\
auto it = std::find_if(std::begin(m), std::end(m),
\
[e](const std::pair<ENUM_TYPE, BasicJsonType>& ej_pair) -> bool
\
{
\
return ej_pair.first == e;
\
});
\
j = ((it != std::end(m)) ? it : std::begin(m))->second;
\
}
\
template<typename BasicJsonType>
\
inline void from_json(const BasicJsonType& j, ENUM_TYPE& e)
\
{
\
static_assert(std::is_enum<ENUM_TYPE>::value, #ENUM_TYPE " must be an enum!");
\
static const std::pair<ENUM_TYPE, BasicJsonType> m[] = __VA_ARGS__;
\
auto it = std::find_if(std::begin(m), std::end(m),
\
[
&
j](const std::pair<ENUM_TYPE, BasicJsonType>& ej_pair) -> bool \
{
\
return ej_pair.second == j;
\
});
\
e = ((it != std::end(m)) ? it : std::begin(m))->first;
\
}
// Ugly macros to avoid uglier copy-paste when specializing basic_json. They
...
...
single_include/nlohmann/json.hpp
View file @
ddda67a0
...
...
@@ -1782,30 +1782,30 @@ JSON_HEDLEY_DIAGNOSTIC_POP
@def NLOHMANN_JSON_SERIALIZE_ENUM
@since version 3.4.0
*/
#define NLOHMANN_JSON_SERIALIZE_ENUM(ENUM_TYPE, ...) \
template<typename BasicJsonType> \
inline void to_json(BasicJsonType& j, const ENUM_TYPE& e) \
{ \
static_assert(std::is_enum<ENUM_TYPE>::value, #ENUM_TYPE " must be an enum!"); \
static const std::pair<ENUM_TYPE, BasicJsonType> m[] = __VA_ARGS__; \
auto it = std::find_if(std::begin(m), std::end(m), \
[e](const std::pair<ENUM_TYPE, BasicJsonType>& ej_pair) -> bool \
{ \
return ej_pair.first == e; \
}); \
j = ((it != std::end(m)) ? it : std::begin(m))->second; \
} \
template<typename BasicJsonType> \
inline void from_json(const BasicJsonType& j, ENUM_TYPE& e) \
{ \
static_assert(std::is_enum<ENUM_TYPE>::value, #ENUM_TYPE " must be an enum!"); \
static const std::pair<ENUM_TYPE, BasicJsonType> m[] = __VA_ARGS__; \
auto it = std::find_if(std::begin(m), std::end(m), \
[j](const std::pair<ENUM_TYPE, BasicJsonType>& ej_pair) -> bool \
{ \
return ej_pair.second == j; \
}); \
e = ((it != std::end(m)) ? it : std::begin(m))->first; \
#define NLOHMANN_JSON_SERIALIZE_ENUM(ENUM_TYPE, ...)
\
template<typename BasicJsonType>
\
inline void to_json(BasicJsonType& j, const ENUM_TYPE& e)
\
{
\
static_assert(std::is_enum<ENUM_TYPE>::value, #ENUM_TYPE " must be an enum!");
\
static const std::pair<ENUM_TYPE, BasicJsonType> m[] = __VA_ARGS__;
\
auto it = std::find_if(std::begin(m), std::end(m),
\
[e](const std::pair<ENUM_TYPE, BasicJsonType>& ej_pair) -> bool
\
{
\
return ej_pair.first == e;
\
});
\
j = ((it != std::end(m)) ? it : std::begin(m))->second;
\
}
\
template<typename BasicJsonType>
\
inline void from_json(const BasicJsonType& j, ENUM_TYPE& e)
\
{
\
static_assert(std::is_enum<ENUM_TYPE>::value, #ENUM_TYPE " must be an enum!");
\
static const std::pair<ENUM_TYPE, BasicJsonType> m[] = __VA_ARGS__;
\
auto it = std::find_if(std::begin(m), std::end(m),
\
[
&
j](const std::pair<ENUM_TYPE, BasicJsonType>& ej_pair) -> bool \
{
\
return ej_pair.second == j;
\
});
\
e = ((it != std::end(m)) ? it : std::begin(m))->first;
\
}
// Ugly macros to avoid uglier copy-paste when specializing basic_json. They
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment