diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-03-05 15:20:12 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-03-05 15:20:12 +0100 |
commit | 279cc589ece5abaeb735974e799c809227e0aa83 (patch) | |
tree | 186204caab0ce3d9cf39a5f09736e6b750e95b67 /cpp/src/Ice/DynamicLibrary.cpp | |
parent | Fixed copy/paste error for reading replica cert CN property (diff) | |
download | ice-279cc589ece5abaeb735974e799c809227e0aa83.tar.bz2 ice-279cc589ece5abaeb735974e799c809227e0aa83.tar.xz ice-279cc589ece5abaeb735974e799c809227e0aa83.zip |
ICE-4793 - Fixes to prevent GCC shadow warnings and other minor fixes
Diffstat (limited to 'cpp/src/Ice/DynamicLibrary.cpp')
-rw-r--r-- | cpp/src/Ice/DynamicLibrary.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/DynamicLibrary.cpp b/cpp/src/Ice/DynamicLibrary.cpp index 314fc71f9ff..1c7fe2f79e3 100644 --- a/cpp/src/Ice/DynamicLibrary.cpp +++ b/cpp/src/Ice/DynamicLibrary.cpp @@ -23,8 +23,8 @@ IceUtil::Shared* IceInternal::upCast(DynamicLibrary* p) { return p; } IceUtil::Shared* IceInternal::upCast(DynamicLibraryList* p) { return p; } IceInternal::DynamicLibrary::DynamicLibrary(const Ice::StringConverterPtr& stringConverter) : - _stringConverter(stringConverter), - _hnd(0) + _hnd(0), + _stringConverter(stringConverter) { } |