summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-04-24 09:42:43 +0200
committerJose <jose@zeroc.com>2017-04-24 09:42:43 +0200
commit36124df7aa538f29a1539780952573d3f8ab0e56 (patch)
treeb87529f59e4762d7ce7454c22eb74cd9a0320b07 /cpp/src
parentRemoved bogus test IceDiscovery/simple/server output (diff)
downloadice-36124df7aa538f29a1539780952573d3f8ab0e56.tar.bz2
ice-36124df7aa538f29a1539780952573d3f8ab0e56.tar.xz
ice-36124df7aa538f29a1539780952573d3f8ab0e56.zip
Do not use inherit constructor with Glacier2::Application
With VC++ 19.00 and 19.10 the defautl constructor gets removed when using inherit constructors and deleted copy constructor.
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Glacier2Lib/Application.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Glacier2Lib/Application.cpp b/cpp/src/Glacier2Lib/Application.cpp
index 08a4558d1ff..43b0d091efe 100644
--- a/cpp/src/Glacier2Lib/Application.cpp
+++ b/cpp/src/Glacier2Lib/Application.cpp
@@ -56,12 +56,12 @@ Glacier2::RestartSessionException::ice_clone() const
{
return new RestartSessionException(*this);
}
+#endif
Glacier2::Application::Application(SignalPolicy signalPolicy) :
Ice::Application(signalPolicy)
{
}
-#endif
Ice::ObjectAdapterPtr
Glacier2::Application::objectAdapter()