diff options
Diffstat (limited to 'build/target')
-rw-r--r-- | build/target | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/target b/build/target index 0aa0227..7776a77 100644 --- a/build/target +++ b/build/target @@ -335,15 +335,15 @@ namespace build iterator operator-- (int) {iterator r (*this); return --r;} + reference operator* () const {return *i_;} + pointer operator-> () const {return i_.operator -> ();} + friend bool operator== (const iterator& x, const iterator& y) { return x.t_ == y.t_ && x.c_ == y.c_ && x.i_ == y.i_; } - reference operator* () const {return *i_;} - pointer operator-> () const {return i_.operator -> ();} - friend bool operator!= (const iterator& x, const iterator& y) {return !(x == y);} |