diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2014-10-01 21:00:44 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2014-10-01 21:00:44 +0000 |
commit | 0b9f5507c88ffc29554eac142b58ea04fbc6ea2c (patch) | |
tree | a86939076395844357106a206c939ea2414b4fab /llvm/unittests/ExecutionEngine/MCJIT/MCJITObjectCacheTest.cpp | |
parent | a406d6c386eddb3f1877a37c96835bee5df59f70 (diff) | |
download | bcm5719-llvm-0b9f5507c88ffc29554eac142b58ea04fbc6ea2c.tar.gz bcm5719-llvm-0b9f5507c88ffc29554eac142b58ea04fbc6ea2c.zip |
Adds 'override' to overriding methods. NFC.
llvm-svn: 218815
Diffstat (limited to 'llvm/unittests/ExecutionEngine/MCJIT/MCJITObjectCacheTest.cpp')
-rw-r--r-- | llvm/unittests/ExecutionEngine/MCJIT/MCJITObjectCacheTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ExecutionEngine/MCJIT/MCJITObjectCacheTest.cpp b/llvm/unittests/ExecutionEngine/MCJIT/MCJITObjectCacheTest.cpp index 01113d00af6..2736383bb75 100644 --- a/llvm/unittests/ExecutionEngine/MCJIT/MCJITObjectCacheTest.cpp +++ b/llvm/unittests/ExecutionEngine/MCJIT/MCJITObjectCacheTest.cpp @@ -33,7 +33,7 @@ public: ObjMap[ModuleID] = copyBuffer(Obj); } - virtual std::unique_ptr<MemoryBuffer> getObject(const Module* M) { + virtual std::unique_ptr<MemoryBuffer> getObject(const Module* M) override { const MemoryBuffer* BufferFound = getObjectInternal(M); ModulesLookedUp.insert(M->getModuleIdentifier()); if (!BufferFound) |