diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-12-05 22:28:48 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-12-05 22:28:48 +0000 |
commit | 72490028ccf2a01b549022ef5eb588776137fb1a (patch) | |
tree | 5f13a71b0e26b566ec1b3d581b91023f43622f48 /cpp/src/Ice/ReferenceFactory.cpp | |
parent | Visual C++ Warning Fix. (diff) | |
download | ice-72490028ccf2a01b549022ef5eb588776137fb1a.tar.bz2 ice-72490028ccf2a01b549022ef5eb588776137fb1a.tar.xz ice-72490028ccf2a01b549022ef5eb588776137fb1a.zip |
Added support for object lookup by identity
Diffstat (limited to 'cpp/src/Ice/ReferenceFactory.cpp')
-rw-r--r-- | cpp/src/Ice/ReferenceFactory.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/ReferenceFactory.cpp b/cpp/src/Ice/ReferenceFactory.cpp index cfb380110cd..991a9cb660c 100644 --- a/cpp/src/Ice/ReferenceFactory.cpp +++ b/cpp/src/Ice/ReferenceFactory.cpp @@ -496,9 +496,9 @@ IceInternal::ReferenceFactory::create(const string& str) if(!decodeString(s, beg, end, adapter) || adapter.size() == 0) { - ProxyParseException ex(__FILE__, __LINE__); - ex.str = str; - throw ex; + ProxyParseException ex(__FILE__, __LINE__); + ex.str = str; + throw ex; } } } |