diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-07-18 19:52:00 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-07-18 19:52:00 +0000 |
commit | b412b2aaa61c22352f3f5f3b44f08730e54f4b65 (patch) | |
tree | 8ac95cdd9a27e5c7f63af3480e8803b5b577b62c /cpp/src/Ice/Proxy.cpp | |
parent | Fix (diff) | |
download | ice-b412b2aaa61c22352f3f5f3b44f08730e54f4b65.tar.bz2 ice-b412b2aaa61c22352f3f5f3b44f08730e54f4b65.tar.xz ice-b412b2aaa61c22352f3f5f3b44f08730e54f4b65.zip |
Fix for Win32 release build.
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp index 18323a23ac8..6c14a545006 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -1075,6 +1075,7 @@ IceDelegateD::Ice::Object::ice_isA(const string& __id, const Context& __context) throw UnknownException(__FILE__, __LINE__); } } + return false; // To keep VC++ compiler happy. } void @@ -1130,6 +1131,7 @@ IceDelegateD::Ice::Object::ice_ids(const ::Ice::Context& __context) throw UnknownException(__FILE__, __LINE__); } } + return false; // To keep VC++ compiler happy. } string @@ -1157,6 +1159,7 @@ IceDelegateD::Ice::Object::ice_id(const ::Ice::Context& __context) throw UnknownException(__FILE__, __LINE__); } } + return false; // To keep VC++ compiler happy. } vector<string> @@ -1184,6 +1187,7 @@ IceDelegateD::Ice::Object::ice_facets(const ::Ice::Context& __context) throw UnknownException(__FILE__, __LINE__); } } + return false; // To keep VC++ compiler happy. } bool @@ -1222,6 +1226,7 @@ IceDelegateD::Ice::Object::ice_invoke(const string& operation, throw UnknownException(__FILE__, __LINE__); } } + return false; // To keep VC++ compiler happy. } void |