mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +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_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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user