diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-07-18 19:54:16 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-07-18 19:54:16 +0000 |
commit | 74d49275e7f70c3d5900a24ca2f859cbb1f91d27 (patch) | |
tree | 007bb995b1c6af089fd7a85482acef33c6eaea0e /cpp/src | |
parent | Fix for Win32 release build. (diff) | |
download | ice-74d49275e7f70c3d5900a24ca2f859cbb1f91d27.tar.bz2 ice-74d49275e7f70c3d5900a24ca2f859cbb1f91d27.tar.xz ice-74d49275e7f70c3d5900a24ca2f859cbb1f91d27.zip |
Fix to the fix...
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp index 6c14a545006..ef526510f2a 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -1131,7 +1131,7 @@ IceDelegateD::Ice::Object::ice_ids(const ::Ice::Context& __context) throw UnknownException(__FILE__, __LINE__); } } - return false; // To keep VC++ compiler happy. + return vector<string>(); // To keep VC++ compiler happy. } string @@ -1187,7 +1187,7 @@ IceDelegateD::Ice::Object::ice_facets(const ::Ice::Context& __context) throw UnknownException(__FILE__, __LINE__); } } - return false; // To keep VC++ compiler happy. + return vector<string>(); // To keep VC++ compiler happy. } bool |