1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-25 13:41:56 +03:00

🔨 fixed compilation error

This commit is contained in:
Niels Lohmann
2017-07-26 23:59:56 +02:00
parent e6aa700360
commit 3d589fd032
4 changed files with 24 additions and 24 deletions

View File

@ -3618,7 +3618,7 @@ class primitive_iterator_t
return lhs.m_it - rhs.m_it;
}
friend constexpr std::ostream& operator<<(std::ostream& os, primitive_iterator_t it)
friend std::ostream& operator<<(std::ostream& os, primitive_iterator_t it)
{
return os << it.m_it;
}