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 /cppe/src | |
parent | Put back IceUtil namespace (diff) | |
download | ice-79c6b2c96b2ae06cb28538044248daa10113d061.tar.bz2 ice-79c6b2c96b2ae06cb28538044248daa10113d061.tar.xz ice-79c6b2c96b2ae06cb28538044248daa10113d061.zip |
Fixed warning
Diffstat (limited to 'cppe/src')
-rw-r--r-- | cppe/src/IceE/ReferenceFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppe/src/IceE/ReferenceFactory.cpp b/cppe/src/IceE/ReferenceFactory.cpp index 9cac8af81c6..1a2af0fe1f9 100644 --- a/cppe/src/IceE/ReferenceFactory.cpp +++ b/cppe/src/IceE/ReferenceFactory.cpp @@ -440,7 +440,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:"; |