Commit 39486303 authored by Niels's avatar Niels

Merge pull request #130 from dariomt/patch-1

removed stream operator for iterator, resolution for #125
parents 8f379ef3 652e1caa
......@@ -5729,12 +5729,6 @@ class basic_json
return anchor != o.anchor;
}
/// stream operator
friend std::ostream& operator<<(std::ostream& o, const iterator_wrapper_internal& w)
{
return o << w.value();
}
/// return key of the iterator
typename basic_json::string_t key() const
{
......
......@@ -5729,12 +5729,6 @@ class basic_json
return anchor != o.anchor;
}
/// stream operator
friend std::ostream& operator<<(std::ostream& o, const iterator_wrapper_internal& w)
{
return o << w.value();
}
/// return key of the iterator
typename basic_json::string_t key() const
{
......
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