2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-25 16:32:09 +00:00

Merge pull request #33 from MarcelRaad/patch-1

Fix MSVC14 compile break
This commit is contained in:
Noel Belcourt
2015-05-14 19:43:03 -06:00

View File

@@ -63,6 +63,9 @@ public:
inline iterator& operator++() { ++i; return *this; }
inline iterator operator++(int)
{ iterator t = *this; ++(*this); return t; }
inline iterator& operator--() { --i; return *this; }
inline iterator operator--(int)
{ iterator t = *this; --(*this); return t; }
inline bool operator==(const iterator& x) const { return i == x.i; }
inline bool operator!=(const iterator& x) const
{ return !(*this == x); }