mirror of
https://github.com/nlohmann/json.git
synced 2026-02-27 05:46:30 +00:00
fixed an error in MSVC
This commit is contained in:
@@ -6191,7 +6191,7 @@ class basic_json
|
||||
}
|
||||
|
||||
/// inequality operator (needed for range-based for)
|
||||
constexpr bool operator!= (const iteration_proxy_internal& o) const
|
||||
bool operator!= (const iteration_proxy_internal& o) const
|
||||
{
|
||||
return anchor != o.anchor;
|
||||
}
|
||||
|
||||
@@ -6191,7 +6191,7 @@ class basic_json
|
||||
}
|
||||
|
||||
/// inequality operator (needed for range-based for)
|
||||
constexpr bool operator!= (const iteration_proxy_internal& o) const
|
||||
bool operator!= (const iteration_proxy_internal& o) const
|
||||
{
|
||||
return anchor != o.anchor;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user