mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-26 20:26:07 +00:00
Change the begin and end methods in ObjectFile to match the style guide.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201108 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -332,12 +332,12 @@ protected:
|
||||
|
||||
public:
|
||||
COFFObjectFile(MemoryBuffer *Object, error_code &EC, bool BufferOwned = true);
|
||||
symbol_iterator begin_symbols() const LLVM_OVERRIDE;
|
||||
symbol_iterator end_symbols() const LLVM_OVERRIDE;
|
||||
library_iterator begin_libraries_needed() const LLVM_OVERRIDE;
|
||||
library_iterator end_libraries_needed() const LLVM_OVERRIDE;
|
||||
section_iterator begin_sections() const LLVM_OVERRIDE;
|
||||
section_iterator end_sections() const LLVM_OVERRIDE;
|
||||
symbol_iterator symbol_begin() const LLVM_OVERRIDE;
|
||||
symbol_iterator symbol_end() const LLVM_OVERRIDE;
|
||||
library_iterator needed_library_begin() const LLVM_OVERRIDE;
|
||||
library_iterator needed_library_end() const LLVM_OVERRIDE;
|
||||
section_iterator section_begin() const LLVM_OVERRIDE;
|
||||
section_iterator section_end() const LLVM_OVERRIDE;
|
||||
|
||||
const coff_section *getCOFFSection(section_iterator &It) const;
|
||||
const coff_symbol *getCOFFSymbol(symbol_iterator &It) const;
|
||||
|
Reference in New Issue
Block a user