summaryrefslogtreecommitdiff
path: root/src/context
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2020-11-18 14:45:52 -0800
committerGitHub <noreply@github.com>2020-11-18 16:45:52 -0600
commit2901ee18f824d1f9e4338ef2853da0ab4ccbff0e (patch)
tree5da53f2130ccd6b7e80e6a6e4e7f24d72ef5aa2c /src/context
parent886acef658504eedb6e0bcc7969449bc42b65b12 (diff)
Add -> operator overload for cd* iterators. (#5464)
Diffstat (limited to 'src/context')
-rw-r--r--src/context/cdhashmap.h1
-rw-r--r--src/context/cdhashset.h1
-rw-r--r--src/context/cdlist.h2
3 files changed, 4 insertions, 0 deletions
diff --git a/src/context/cdhashmap.h b/src/context/cdhashmap.h
index 77c9012ff..afcfb00a9 100644
--- a/src/context/cdhashmap.h
+++ b/src/context/cdhashmap.h
@@ -418,6 +418,7 @@ public:
// Dereference operators.
const value_type& operator*() const { return d_it->getValue(); }
+ const value_type* operator->() const { return &d_it->getValue(); }
// Prefix increment
iterator& operator++()
diff --git a/src/context/cdhashset.h b/src/context/cdhashset.h
index 9bbf6537c..c8dcc7888 100644
--- a/src/context/cdhashset.h
+++ b/src/context/cdhashset.h
@@ -115,6 +115,7 @@ public:
V operator*() const {
return d_val;
}
+ V* operator->() const { return &d_val; }
};/* class CDSet<>::iterator::Proxy */
// Actual postfix increment: returns Proxy with the old value.
diff --git a/src/context/cdlist.h b/src/context/cdlist.h
index 89bf2b5e8..cb5e552ac 100644
--- a/src/context/cdlist.h
+++ b/src/context/cdlist.h
@@ -357,6 +357,8 @@ public:
return *d_it;
}
+ inline const T* operator->() const { return d_it; }
+
/** Prefix increment */
const_iterator& operator++() {
++d_it;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback