diff options
author | ZeroC Staff <git@zeroc.com> | 2003-05-23 12:38:38 +0000 |
---|---|---|
committer | ZeroC Staff <git@zeroc.com> | 2003-05-23 12:38:38 +0000 |
commit | 35d7b3e955cc3c123e3245641cc4c183405f56fe (patch) | |
tree | 665813f739c8742b5c0ec6d0dc894ce901d748ad /cpp/src/Slice/Parser.cpp | |
parent | Fixed the bug that Benoit found yesterday in both ice and icej. (diff) | |
download | ice-35d7b3e955cc3c123e3245641cc4c183405f56fe.tar.bz2 ice-35d7b3e955cc3c123e3245641cc4c183405f56fe.tar.xz ice-35d7b3e955cc3c123e3245641cc4c183405f56fe.zip |
Added unreachable return statement to keep windows compiler happy.
Diffstat (limited to 'cpp/src/Slice/Parser.cpp')
-rw-r--r-- | cpp/src/Slice/Parser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/Slice/Parser.cpp b/cpp/src/Slice/Parser.cpp index f04292a71d5..b546bd10445 100644 --- a/cpp/src/Slice/Parser.cpp +++ b/cpp/src/Slice/Parser.cpp @@ -146,6 +146,7 @@ Slice::Builtin::typeId() const } } assert(false); + return ""; // Keep the compiler happy } bool |