Commit 836fdfed authored by Niels's avatar Niels

fixed an error in MSVC

parent a69b1a6f
...@@ -6191,7 +6191,7 @@ class basic_json ...@@ -6191,7 +6191,7 @@ class basic_json
} }
/// inequality operator (needed for range-based for) /// 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; return anchor != o.anchor;
} }
......
...@@ -6191,7 +6191,7 @@ class basic_json ...@@ -6191,7 +6191,7 @@ class basic_json
} }
/// inequality operator (needed for range-based for) /// 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; return anchor != o.anchor;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment