diff options
author | Jose <jose@zeroc.com> | 2015-12-28 14:15:32 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-12-28 14:15:32 +0100 |
commit | ba39ff673427fb8ba7bda2dba0381df626799ca0 (patch) | |
tree | 693559d12203cbdc55e34101505015bf625a4762 /cpp/test/Ice/objects/Server.cpp | |
parent | Fix website links (diff) | |
download | ice-ba39ff673427fb8ba7bda2dba0381df626799ca0.tar.bz2 ice-ba39ff673427fb8ba7bda2dba0381df626799ca0.tar.xz ice-ba39ff673427fb8ba7bda2dba0381df626799ca0.zip |
Object factory registration fix for VS 2015
Diffstat (limited to 'cpp/test/Ice/objects/Server.cpp')
-rw-r--r-- | cpp/test/Ice/objects/Server.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/test/Ice/objects/Server.cpp b/cpp/test/Ice/objects/Server.cpp index f1a1a197d39..8cafb99e040 100644 --- a/cpp/test/Ice/objects/Server.cpp +++ b/cpp/test/Ice/objects/Server.cpp @@ -57,6 +57,7 @@ run(int, char**, const Ice::CommunicatorPtr& communicator) Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("TestAdapter"); InitialPtr initial = new InitialI(adapter); adapter->add(initial, communicator->stringToIdentity("initial")); + adapter->add(new TestIntfI(), communicator->stringToIdentity("test")); UnexpectedObjectExceptionTestIPtr uoet = new UnexpectedObjectExceptionTestI; adapter->add(uoet, communicator->stringToIdentity("uoet")); adapter->activate(); |