diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-11-26 15:57:26 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-11-26 15:57:26 +0000 |
commit | e0974e8cb74f09a78abc6d3ceafdfbf156b5b56b (patch) | |
tree | e0bd9770b7bb6ec6ab91a0a3c37584c2751fb2dc /cpp/src/IcePack/ServerBuilder.cpp | |
parent | file TwowaysAMI.cpp was initially added on branch ami. (diff) | |
download | ice-e0974e8cb74f09a78abc6d3ceafdfbf156b5b56b.tar.bz2 ice-e0974e8cb74f09a78abc6d3ceafdfbf156b5b56b.tar.xz ice-e0974e8cb74f09a78abc6d3ceafdfbf156b5b56b.zip |
Fixed warnings when compiled with optimization.
Diffstat (limited to 'cpp/src/IcePack/ServerBuilder.cpp')
-rw-r--r-- | cpp/src/IcePack/ServerBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePack/ServerBuilder.cpp b/cpp/src/IcePack/ServerBuilder.cpp index 79697a883f0..d506bbd3cb6 100644 --- a/cpp/src/IcePack/ServerBuilder.cpp +++ b/cpp/src/IcePack/ServerBuilder.cpp @@ -690,6 +690,6 @@ IcePack::ServerBuilder::getServerAdapter(const std::string& id) const else { assert(false); + return 0; // Keep the compiler happy. } } - |