summaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++-v3/include/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp')
-rw-r--r--libstdc++-v3/include/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libstdc++-v3/include/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp b/libstdc++-v3/include/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
index e17a5bf1728..f74f03d7a48 100644
--- a/libstdc++-v3/include/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
+++ b/libstdc++-v3/include/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp
@@ -109,7 +109,7 @@ public:
// Compares content to a different iterator object.
inline bool
- operator==(const const_point_iterator_& other) const
+ operator==(const point_const_iterator_& other) const
{
return (m_p_value == other.m_p_value);
}
@@ -123,7 +123,7 @@ public:
// Compares content (negatively) to a different iterator object.
inline bool
- operator!=(const const_point_iterator_& other) const
+ operator!=(const point_const_iterator_& other) const
{
return (m_p_value != other.m_p_value);
}
@@ -133,7 +133,7 @@ public:
{ }
protected:
- friend class const_point_iterator_;
+ friend class point_const_iterator_;
friend class PB_DS_CLASS_C_DEC;