🐛 fix for #947

parent 51c774f2
...@@ -608,7 +608,7 @@ class iter_impl ...@@ -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;
}; };
} }
} }
...@@ -4467,7 +4467,7 @@ class iter_impl ...@@ -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;
}; };
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment