1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Remove iterator_range::end.

Because the current proposal does not include that member function,
and we are trying to keep in line with that.

llvm-svn: 248451
This commit is contained in:
Rui Ueyama 2015-09-24 00:23:07 +00:00
parent eff1b99076
commit 62eda65031

View File

@ -45,7 +45,6 @@ public:
IteratorT begin() const { return begin_iterator; }
IteratorT end() const { return end_iterator; }
bool empty() const { return begin_iterator == end_iterator; }
};
/// \brief Convenience function for iterating over sub-ranges.