1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-09 21:50:45 +01:00

Fix no compile of test serialisation

This commit is contained in:
paboyle 2018-01-26 00:13:21 +00:00
parent f4010023ca
commit 76a4dd36d9

View File

@ -3640,7 +3640,6 @@ This class implements a both iterators (iterator and const_iterator) for the
@since version 1.0.0, simplified in version 2.0.9 @since version 1.0.0, simplified in version 2.0.9
*/ */
template<typename BasicJsonType> template<typename BasicJsonType>
class iter_impl : public std::iterator<std::random_access_iterator_tag, BasicJsonType> class iter_impl : public std::iterator<std::random_access_iterator_tag, BasicJsonType>
{ {
@ -3737,7 +3736,7 @@ class iter_impl : public std::iterator<std::random_access_iterator_tag, BasicJso
return *this; return *this;
} }
private: public:
/*! /*!
@brief set the iterator to the first value @brief set the iterator to the first value
@pre The iterator is initialized; i.e. `m_object != nullptr`. @pre The iterator is initialized; i.e. `m_object != nullptr`.