From a58a8c017015a54b53baa5da65dad445e2f9ad2b Mon Sep 17 00:00:00 2001 From: Logan Smith Date: Mon, 20 Jul 2020 22:03:19 -0700 Subject: [PATCH] [NFC] Add another missing 'override' This should be the last one needed to appease the -Werror bots (knock on wood). --- llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ public: RemoteTrampolinePool(OrcRemoteTargetClient &Client) : Client(Client) {} private: - Error grow() { + Error grow() override { JITTargetAddress BlockAddr = 0; uint32_t NumTrampolines = 0; if (auto TrampolineInfoOrErr = Client.emitTrampolineBlock()) -- 2.34.1