Tidy up. Remove extraneous typedef.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206768 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jim Grosbach 2014-04-21 18:10:29 +00:00
parent 6763d96939
commit e6b88dc26a

View File

@ -113,9 +113,9 @@ public:
relocation_iterator relocation_begin() const;
relocation_iterator relocation_end() const;
typedef iterator_range<relocation_iterator> relocation_iterator_range;
relocation_iterator_range relocations() const {
return relocation_iterator_range(relocation_begin(), relocation_end());
iterator_range<relocation_iterator> relocations() const {
return iterator_range<relocation_iterator>(relocation_begin(),
relocation_end());
}
section_iterator getRelocatedSection() const;