From 60e2d28eb724ce7256fa73a3b8f7d23601c58126 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Wed, 31 Jan 2018 20:53:13 +0100 Subject: [PATCH] :bug: fix for #947 --- develop/detail/iterators/iter_impl.hpp | 2 +- src/json.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/develop/detail/iterators/iter_impl.hpp b/develop/detail/iterators/iter_impl.hpp index 4d9394768..2934389bc 100644 --- a/develop/detail/iterators/iter_impl.hpp +++ b/develop/detail/iterators/iter_impl.hpp @@ -608,7 +608,7 @@ class iter_impl /// associated JSON instance pointer m_object = nullptr; /// the actual iterator of the associated instance - internal_iterator::type> m_it = {}; + internal_iterator::type> m_it; }; } } diff --git a/src/json.hpp b/src/json.hpp index 0bb324d0d..7487b6867 100644 --- a/src/json.hpp +++ b/src/json.hpp @@ -4467,7 +4467,7 @@ class iter_impl /// associated JSON instance pointer m_object = nullptr; /// the actual iterator of the associated instance - internal_iterator::type> m_it = {}; + internal_iterator::type> m_it; }; } }