🚑 fix compiler errors

This commit is contained in:
Niels Lohmann 2019-07-14 21:19:55 +02:00
parent 6c7cde181c
commit cf8251eb54
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
3 changed files with 4 additions and 20 deletions

View file

@ -164,14 +164,6 @@ class iter_impl
return *this;
}
/// @copydoc operator=(const iter_impl<typename std::remove_const<BasicJsonType>::type>&)
iter_impl& operator=(const iter_impl<const BasicJsonType>& other) noexcept
{
m_object = other.m_object;
m_it = other.m_it;
return *this;
}
private:
/*!
@brief set the iterator to the first value