summaryrefslogtreecommitdiff
path: root/cpp/test/IceGrid/simple/Client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceGrid/simple/Client.cpp')
-rw-r--r--cpp/test/IceGrid/simple/Client.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/cpp/test/IceGrid/simple/Client.cpp b/cpp/test/IceGrid/simple/Client.cpp
index e7000c958db..41102fdbc56 100644
--- a/cpp/test/IceGrid/simple/Client.cpp
+++ b/cpp/test/IceGrid/simple/Client.cpp
@@ -3,18 +3,16 @@
//
#include <Ice/Ice.h>
-#include <IceUtil/IceUtil.h>
#include <TestHelper.h>
#include <Test.h>
using namespace std;
-using namespace Test;
-class Client : public Test::TestHelper
+class Client final : public Test::TestHelper
{
public:
- void run(int, char**);
+ void run(int, char**) override;
};
void
@@ -23,7 +21,7 @@ Client::run(int argc, char** argv)
#ifdef ICE_STATIC_LIBS
Ice::registerIceLocatorDiscovery(false);
#endif
- Ice::CommunicatorHolder communicator = initialize(argc, argv);
+ Ice::CommunicatorHolder communicatorHolder = initialize(argc, argv);
bool withDeploy = false;