mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-03 13:31:05 +00:00
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:
parent
6763d96939
commit
e6b88dc26a
@ -113,9 +113,9 @@ public:
|
|||||||
|
|
||||||
relocation_iterator relocation_begin() const;
|
relocation_iterator relocation_begin() const;
|
||||||
relocation_iterator relocation_end() const;
|
relocation_iterator relocation_end() const;
|
||||||
typedef iterator_range<relocation_iterator> relocation_iterator_range;
|
iterator_range<relocation_iterator> relocations() const {
|
||||||
relocation_iterator_range relocations() const {
|
return iterator_range<relocation_iterator>(relocation_begin(),
|
||||||
return relocation_iterator_range(relocation_begin(), relocation_end());
|
relocation_end());
|
||||||
}
|
}
|
||||||
section_iterator getRelocatedSection() const;
|
section_iterator getRelocatedSection() const;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user