Remove iterator_range::end.

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


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@248451 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rui Ueyama 2015-09-24 00:23:07 +00:00
parent d25f78f64a
commit e81b32f4f5

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.