Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
json
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
json
Commits
b0a38830
Unverified
Commit
b0a38830
authored
Apr 13, 2020
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🎨
fix format
parent
3483d923
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
22 deletions
+23
-22
json.hpp
include/nlohmann/json.hpp
+11
-11
json.hpp
single_include/nlohmann/json.hpp
+12
-11
No files found.
include/nlohmann/json.hpp
View file @
b0a38830
...
@@ -5650,17 +5650,17 @@ class basic_json
...
@@ -5650,17 +5650,17 @@ class basic_json
Or you can self-defined operator equal function like this:
Or you can self-defined operator equal function like this:
@code {.cpp}
@code {.cpp}
bool my_equal(const_reference lhs, const_reference rhs) {
bool my_equal(const_reference lhs, const_reference rhs) {
const auto lhs_type lhs.type();
const auto lhs_type lhs.type();
const auto rhs_type rhs.type();
const auto rhs_type rhs.type();
if (lhs_type == rhs_type) {
if (lhs_type == rhs_type) {
switch(lhs_type)
switch(lhs_type)
// self_defined case
// self_defined case
case value_t::number_float:
case value_t::number_float:
return std::abs(lhs - rhs) <= std::numeric_limits<float>::epsilon();
return std::abs(lhs - rhs) <= std::numeric_limits<float>::epsilon();
// other cases remain the same with the original
// other cases remain the same with the original
...
...
}
}
...
...
}
}
@endcode
@endcode
...
...
single_include/nlohmann/json.hpp
View file @
b0a38830
...
@@ -20509,19 +20509,20 @@ class basic_json
...
@@ -20509,19 +20509,20 @@ class basic_json
Or you can self-defined operator equal function like this:
Or you can self-defined operator equal function like this:
@code {.cpp}
@code {.cpp}
bool my_equal(const_reference lhs, const_reference rhs) {
bool my_equal(const_reference lhs, const_reference rhs) {
const auto lhs_type lhs.type();
const auto lhs_type lhs.type();
const auto rhs_type rhs.type();
const auto rhs_type rhs.type();
if (lhs_type == rhs_type) {
if (lhs_type == rhs_type) {
switch(lhs_type)
switch(lhs_type)
// self_defined case
// self_defined case
case value_t::number_float:
case value_t::number_float:
return std::abs(lhs - rhs) <= std::numeric_limits<float>::epsilon();
return std::abs(lhs - rhs) <= std::numeric_limits<float>::epsilon();
// other cases remain the same with the original
// other cases remain the same with the original
...
...
}
}
...
...
}
}
@endcode
@endcode
@note NaN values never compare equal to themselves or to other NaN values.
@note NaN values never compare equal to themselves or to other NaN values.
@param[in] lhs first JSON value to consider
@param[in] lhs first JSON value to consider
...
...
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