diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-11 17:38:01 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-11 17:38:01 +0000 |
commit | 79c6b2c96b2ae06cb28538044248daa10113d061 (patch) | |
tree | 8372213df362c4f47193f49655bc46fdccfc2b1f /cpp/src/Ice/ReferenceFactory.cpp | |
parent | Put back IceUtil namespace (diff) | |
download | ice-79c6b2c96b2ae06cb28538044248daa10113d061.tar.bz2 ice-79c6b2c96b2ae06cb28538044248daa10113d061.tar.xz ice-79c6b2c96b2ae06cb28538044248daa10113d061.zip |
Fixed warning
Diffstat (limited to 'cpp/src/Ice/ReferenceFactory.cpp')
-rw-r--r-- | cpp/src/Ice/ReferenceFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/ReferenceFactory.cpp b/cpp/src/Ice/ReferenceFactory.cpp index f39a0fb760d..b5266668098 100644 --- a/cpp/src/Ice/ReferenceFactory.cpp +++ b/cpp/src/Ice/ReferenceFactory.cpp @@ -446,7 +446,7 @@ IceInternal::ReferenceFactory::create(const string& str) ex.str = unknownEndpoints.front(); throw ex; } - else + else if(unknownEndpoints.size() != 0) { Warning out(_instance->logger()); out << "Proxy contains unknown endpoints:"; |