summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2002-07-18 19:52:00 +0000
committerBenoit Foucher <benoit@zeroc.com>2002-07-18 19:52:00 +0000
commitb412b2aaa61c22352f3f5f3b44f08730e54f4b65 (patch)
tree8ac95cdd9a27e5c7f63af3480e8803b5b577b62c /cpp/src
parentFix (diff)
downloadice-b412b2aaa61c22352f3f5f3b44f08730e54f4b65.tar.bz2
ice-b412b2aaa61c22352f3f5f3b44f08730e54f4b65.tar.xz
ice-b412b2aaa61c22352f3f5f3b44f08730e54f4b65.zip
Fix for Win32 release build.
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Ice/Proxy.cpp5
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