summaryrefslogtreecommitdiff
path: root/include/llvm/Object/COFF.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Object/COFF.h')
-rw-r--r--include/llvm/Object/COFF.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/llvm/Object/COFF.h b/include/llvm/Object/COFF.h
index 5d99508f57..264a851e85 100644
--- a/include/llvm/Object/COFF.h
+++ b/include/llvm/Object/COFF.h
@@ -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;