From: Rafael Espindola Date: Wed, 7 May 2014 19:52:32 +0000 (+0000) Subject: Replace a virtual with an override. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b507e6601d23aa37f60b1714f76a8abb00c492d3;p=oota-llvm.git Replace a virtual with an override. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208242 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/ExecutionEngine/JIT/JITTest.cpp b/unittests/ExecutionEngine/JIT/JITTest.cpp index 9e65fee4b1e..f438286f317 100644 --- a/unittests/ExecutionEngine/JIT/JITTest.cpp +++ b/unittests/ExecutionEngine/JIT/JITTest.cpp @@ -114,8 +114,8 @@ public: return Result; } int stubsAllocated; - virtual uint8_t *allocateStub(const GlobalValue* F, unsigned StubSize, - unsigned Alignment) { + uint8_t *allocateStub(const GlobalValue *F, unsigned StubSize, + unsigned Alignment) override { stubsAllocated++; return Base->allocateStub(F, StubSize, Alignment); }