Skip to content

Commit

Permalink
🔨 fixed an error in MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
nlohmann committed Jul 27, 2017
1 parent 3d589fd commit 669ebf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/json.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4333,7 +4333,7 @@ template<typename IteratorType> class iteration_proxy
}

/// inequality operator (needed for range-based for)
constexpr bool operator!=(const iteration_proxy_internal& o) const
bool operator!=(const iteration_proxy_internal& o) const noexcept
{
return anchor != o.anchor;
}
Expand Down

0 comments on commit 669ebf5

Please sign in to comment.