diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-02-06 15:08:23 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-02-06 15:08:23 +0100 |
commit | 9f0cdb69c9065d28c8defeeb22b2b49ee397f031 (patch) | |
tree | f8313028da5ae12713fe1e2ae1b8ca9d50b96a52 /cpp/include | |
parent | Merge remote-tracking branch 'origin/matlab' into 3.7 (diff) | |
download | ice-9f0cdb69c9065d28c8defeeb22b2b49ee397f031.tar.bz2 ice-9f0cdb69c9065d28c8defeeb22b2b49ee397f031.tar.xz ice-9f0cdb69c9065d28c8defeeb22b2b49ee397f031.zip |
Removed explicit from CommunicatorHolder(shared_ptr<Communicator>) constructor (ICE-8633)
Diffstat (limited to 'cpp/include')
-rw-r--r-- | cpp/include/Ice/Initialize.h | 2 |
1 files changed, 1 insertions, 1 deletions
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> communicator); + CommunicatorHolder(std::shared_ptr<Communicator> communicator); /** * Adopts the given communicator. If this holder currently holds a communicator, |