[llvm] a58a8c0 - [NFC] Add another missing 'override'

Logan Smith via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 20 22:04:58 PDT 2020


Author: Logan Smith
Date: 2020-07-20T22:04:27-07:00
New Revision: a58a8c017015a54b53baa5da65dad445e2f9ad2b

URL: https://github.com/llvm/llvm-project/commit/a58a8c017015a54b53baa5da65dad445e2f9ad2b
DIFF: https://github.com/llvm/llvm-project/commit/a58a8c017015a54b53baa5da65dad445e2f9ad2b.diff

LOG: [NFC] Add another missing 'override'

This should be the last one needed to appease the -Werror bots (knock on wood).

Added: 
    

Modified: 
    llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h b/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
index 809e7cd0e880..5f4b98a32e25 100644
--- a/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
+++ b/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
@@ -454,7 +454,7 @@ class OrcRemoteTargetClient
     RemoteTrampolinePool(OrcRemoteTargetClient &Client) : Client(Client) {}
 
   private:
-    Error grow() {
+    Error grow() override {
       JITTargetAddress BlockAddr = 0;
       uint32_t NumTrampolines = 0;
       if (auto TrampolineInfoOrErr = Client.emitTrampolineBlock())


        


More information about the llvm-commits mailing list