From 9f0cdb69c9065d28c8defeeb22b2b49ee397f031 Mon Sep 17 00:00:00 2001 From: Benoit Foucher Date: Tue, 6 Feb 2018 15:08:23 +0100 Subject: Removed explicit from CommunicatorHolder(shared_ptr) constructor (ICE-8633) --- cpp/include/Ice/Initialize.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/include/Ice/Initialize.h') diff --git a/cpp/include/Ice/Initialize.h b/cpp/include/Ice/Initialize.h index 15964d54998..9d546587e06 100644 --- a/cpp/include/Ice/Initialize.h +++ b/cpp/include/Ice/Initialize.h @@ -659,7 +659,7 @@ public: * Adopts the given communicator. * @param communicator The new communicator instance to hold. */ - explicit CommunicatorHolder(std::shared_ptr communicator); + CommunicatorHolder(std::shared_ptr communicator); /** * Adopts the given communicator. If this holder currently holds a communicator, -- cgit v1.2.3 From 8c6b147af1324f2d3135e711009f1bb983c5d9f7 Mon Sep 17 00:00:00 2001 From: Benoit Foucher Date: Tue, 6 Feb 2018 15:25:40 +0100 Subject: Removed explicit from CommunicatorHolder(const Ice::CommunicatorPtr&>) constructor (ICE-8633) --- cpp/include/Ice/Initialize.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/include/Ice/Initialize.h') diff --git a/cpp/include/Ice/Initialize.h b/cpp/include/Ice/Initialize.h index 9d546587e06..f595b126194 100644 --- a/cpp/include/Ice/Initialize.h +++ b/cpp/include/Ice/Initialize.h @@ -869,7 +869,7 @@ public: * Adopts the given communicator. * @param communicator The new communicator instance to hold. */ - explicit CommunicatorHolder(const CommunicatorPtr& communicator); + CommunicatorHolder(const CommunicatorPtr& communicator); /** * Adopts the given communicator. If this holder currently holds a communicator, -- cgit v1.2.3