fixed an error in MSVC

This commit is contained in:
Niels 2016-02-14 16:53:32 +01:00
parent a69b1a6f0b
commit 836fdfedf2
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}

View file

@ -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;
}