diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-12-09 11:22:45 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-12-09 11:22:45 +0000 |
commit | fb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81 (patch) | |
tree | e7c7f79755f5195e5420ca658f205df55395ad57 /cppe/src | |
parent | update contents of demo definition files (diff) | |
download | ice-fb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81.tar.bz2 ice-fb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81.tar.xz ice-fb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81.zip |
Fixed DirectReference::getConnection() to not call toString()
Diffstat (limited to 'cppe/src')
-rw-r--r-- | cppe/src/IceE/Reference.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppe/src/IceE/Reference.cpp b/cppe/src/IceE/Reference.cpp index dc29b400091..ea3f67869f5 100644 --- a/cppe/src/IceE/Reference.cpp +++ b/cppe/src/IceE/Reference.cpp @@ -470,7 +470,7 @@ IceInternal::FixedReference::getConnection() const if(_fixedConnections.empty()) { NoEndpointException ex(__FILE__, __LINE__); - ex.proxy = toString(); + ex.proxy = ""; // No stringified representation for fixed proxies. throw ex; } |