From 9ab4adbe63adacacc0ed523e7ba0e6c2108cbec4 Mon Sep 17 00:00:00 2001 From: Bernard Normier Date: Mon, 7 Oct 2024 16:51:18 -0400 Subject: [PATCH] Small cleanup --- cpp/src/Ice/Instance.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cpp/src/Ice/Instance.h b/cpp/src/Ice/Instance.h index d03b0948297..f8b71ba5cce 100644 --- a/cpp/src/Ice/Instance.h +++ b/cpp/src/Ice/Instance.h @@ -198,13 +198,13 @@ namespace IceInternal Ice::SSL::SSLEnginePtr _sslEngine; }; - class ProcessI : public Ice::Process + class ProcessI final : public Ice::Process { public: ProcessI(const Ice::CommunicatorPtr&); - virtual void shutdown(const Ice::Current&); - virtual void writeMessage(std::string, std::int32_t, const Ice::Current&); + void shutdown(const Ice::Current&) final; + void writeMessage(std::string message, std::int32_t fd, const Ice::Current&) final; private: const Ice::CommunicatorPtr _communicator;