diff options
author | Craig Topper <craig.topper@gmail.com> | 2014-03-08 07:51:20 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2014-03-08 07:51:20 +0000 |
commit | b51ff603eae8cd286d6e66d52e66261010d6ab70 (patch) | |
tree | b993f33c555c44d05c390c5d48e3198126c435a9 /llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp | |
parent | 5f9eb0af72af4115b80d2c24becb5e85fea9b121 (diff) | |
download | bcm5719-llvm-b51ff603eae8cd286d6e66d52e66261010d6ab70.tar.gz bcm5719-llvm-b51ff603eae8cd286d6e66d52e66261010d6ab70.zip |
[C++11] Add 'override' keyword to virtual methods that override their base class.
llvm-svn: 203344
Diffstat (limited to 'llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp b/llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp index 5878e592834..d5587b34a5a 100644 --- a/llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp +++ b/llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp @@ -84,12 +84,12 @@ public: /// Creates an entry in the JIT registry for the buffer @p Object, /// which must contain an object file in executable memory with any /// debug information for the debugger. - void registerObject(const ObjectBuffer &Object); + void registerObject(const ObjectBuffer &Object) override; /// Removes the internal registration of @p Object, and /// frees associated resources. /// Returns true if @p Object was found in ObjectBufferMap. - bool deregisterObject(const ObjectBuffer &Object); + bool deregisterObject(const ObjectBuffer &Object) override; private: /// Deregister the debug info for the given object file from the debugger |