🚨 fixed another linter warning #1400

Closes #1400.
parent 5c04cc10
...@@ -52,13 +52,13 @@ template <typename IteratorType> class iteration_proxy_value ...@@ -52,13 +52,13 @@ template <typename IteratorType> class iteration_proxy_value
} }
/// equality operator (needed for InputIterator) /// equality operator (needed for InputIterator)
bool operator==(const iteration_proxy_value& o) const noexcept bool operator==(const iteration_proxy_value& o) const
{ {
return anchor == o.anchor; return anchor == o.anchor;
} }
/// inequality operator (needed for range-based for) /// inequality operator (needed for range-based for)
bool operator!=(const iteration_proxy_value& o) const noexcept bool operator!=(const iteration_proxy_value& o) const
{ {
return anchor != o.anchor; return anchor != o.anchor;
} }
......
...@@ -1700,13 +1700,13 @@ template <typename IteratorType> class iteration_proxy_value ...@@ -1700,13 +1700,13 @@ template <typename IteratorType> class iteration_proxy_value
} }
/// equality operator (needed for InputIterator) /// equality operator (needed for InputIterator)
bool operator==(const iteration_proxy_value& o) const noexcept bool operator==(const iteration_proxy_value& o) const
{ {
return anchor == o.anchor; return anchor == o.anchor;
} }
/// inequality operator (needed for range-based for) /// inequality operator (needed for range-based for)
bool operator!=(const iteration_proxy_value& o) const noexcept bool operator!=(const iteration_proxy_value& o) const
{ {
return anchor != o.anchor; return anchor != o.anchor;
} }
......
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