🐛 fix for #947

This commit is contained in:
Niels Lohmann 2018-01-31 20:53:13 +01:00
parent 51c774f208
commit 60e2d28eb7
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
2 changed files with 2 additions and 2 deletions

View file

@ -608,7 +608,7 @@ class iter_impl
/// associated JSON instance /// associated JSON instance
pointer m_object = nullptr; pointer m_object = nullptr;
/// the actual iterator of the associated instance /// the actual iterator of the associated instance
internal_iterator<typename std::remove_const<BasicJsonType>::type> m_it = {}; internal_iterator<typename std::remove_const<BasicJsonType>::type> m_it;
}; };
} }
} }

View file

@ -4467,7 +4467,7 @@ class iter_impl
/// associated JSON instance /// associated JSON instance
pointer m_object = nullptr; pointer m_object = nullptr;
/// the actual iterator of the associated instance /// the actual iterator of the associated instance
internal_iterator<typename std::remove_const<BasicJsonType>::type> m_it = {}; internal_iterator<typename std::remove_const<BasicJsonType>::type> m_it;
}; };
} }
} }