Skip to content

Commit

Permalink
Small cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardnormier committed Oct 7, 2024
1 parent 8cc1187 commit 9ab4adb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpp/src/Ice/Instance.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9ab4adb

Please sign in to comment.