🚨 fixed more compiler warnings

This commit is contained in:
Niels Lohmann 2018-06-23 10:47:55 +02:00
parent 850922269d
commit 66dd1a846d
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
5 changed files with 8 additions and 12 deletions

View file

@ -87,7 +87,7 @@ class primitive_iterator_t
primitive_iterator_t const operator++(int) noexcept
{
auto result = *this;
m_it++;
++m_it;
return result;
}
@ -100,7 +100,7 @@ class primitive_iterator_t
primitive_iterator_t const operator--(int) noexcept
{
auto result = *this;
m_it--;
--m_it;
return result;
}