Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2102)

Unified Diff: courgette/disassembler_elf_32_x86.h

Issue 655553003: replace OVERRIDE with override in courgette/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/disassembler_elf_32_x86.h
diff --git a/courgette/disassembler_elf_32_x86.h b/courgette/disassembler_elf_32_x86.h
index 043cf83f3e6062a443a7198fd974aeb3eb5e61d7..bc83a04c4c863f2f2179b914fe90daf937c5f097 100644
--- a/courgette/disassembler_elf_32_x86.h
+++ b/courgette/disassembler_elf_32_x86.h
@@ -21,17 +21,17 @@ class DisassemblerElf32X86 : public DisassemblerElf32 {
explicit TypedRVAX86(RVA rva) : TypedRVA(rva) {
}
- virtual CheckBool ComputeRelativeTarget(const uint8* op_pointer) OVERRIDE {
+ virtual CheckBool ComputeRelativeTarget(const uint8* op_pointer) override {
set_relative_target(Read32LittleEndian(op_pointer) + 4);
return true;
}
virtual CheckBool EmitInstruction(AssemblyProgram* program,
- RVA target_rva) OVERRIDE {
+ RVA target_rva) override {
return program->EmitRel32(program->FindOrMakeRel32Label(target_rva));
}
- virtual uint16 op_size() const OVERRIDE { return 4; }
+ virtual uint16 op_size() const override { return 4; }
};
explicit DisassemblerElf32X86(const void* start, size_t length);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698