summaryrefslogtreecommitdiff
path: root/cpp/test/IceBridge/simple/Client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceBridge/simple/Client.cpp')
-rw-r--r--cpp/test/IceBridge/simple/Client.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/IceBridge/simple/Client.cpp b/cpp/test/IceBridge/simple/Client.cpp
index 392150634e3..3fecc885ffa 100644
--- a/cpp/test/IceBridge/simple/Client.cpp
+++ b/cpp/test/IceBridge/simple/Client.cpp
@@ -8,19 +8,19 @@
using namespace std;
-class Client : public Test::TestHelper
+class Client final : public Test::TestHelper
{
public:
- void run(int argc, char** argv);
+ void run(int argc, char** argv) override;
};
void
Client::run(int argc, char** argv)
{
- Ice::PropertiesPtr properties = createTestProperties(argc, argv);
+ auto properties = createTestProperties(argc, argv);
properties->setProperty("Ice.RetryIntervals", "-1");
- Ice::CommunicatorHolder communicator = initialize(argc, argv, properties);
+ Ice::CommunicatorHolder communicatorHolder = initialize(argc, argv, properties);
void allTests(Test::TestHelper*);
allTests(this);
}