From 669ebf51bcd92b34f859890dae5a0276bdb2423f Mon Sep 17 00:00:00 2001
From: Niels Lohmann <mail@nlohmann.me>
Date: Thu, 27 Jul 2017 06:04:35 +0200
Subject: [PATCH] :hammer: fixed an error in MSVC

---
 src/json.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/json.hpp b/src/json.hpp
index 78212af0..32ec78c7 100644
--- a/src/json.hpp
+++ b/src/json.hpp
@@ -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;
         }