summaryrefslogtreecommitdiff
path: root/cpp/test/IceGrid/allocation/TestI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceGrid/allocation/TestI.cpp')
-rw-r--r--cpp/test/IceGrid/allocation/TestI.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/IceGrid/allocation/TestI.cpp b/cpp/test/IceGrid/allocation/TestI.cpp
index f91a7ac44b2..dfa2b6c6bbb 100644
--- a/cpp/test/IceGrid/allocation/TestI.cpp
+++ b/cpp/test/IceGrid/allocation/TestI.cpp
@@ -5,8 +5,8 @@
#include <Ice/Ice.h>
#include <TestI.h>
-TestI::TestI(const Ice::PropertiesPtr& properties) :
- _properties(properties)
+TestI::TestI(std::shared_ptr<Ice::Properties> properties) :
+ _properties(move(properties))
{
}
@@ -17,7 +17,7 @@ TestI::shutdown(const Ice::Current& current)
}
std::string
-TestI::getProperty(const std::string& name, const Ice::Current&)
+TestI::getProperty(std::string name, const Ice::Current&)
{
return _properties->getProperty(name);
}