diff options
author | Bernard Normier <bernard@zeroc.com> | 2018-10-27 17:57:25 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2018-10-27 17:57:25 -0400 |
commit | 1c72f5304e91f2e55b117bfd1f8ddb357c96bf19 (patch) | |
tree | 5b7d90885593f0e4e0b94b1cb90840805ae2ddb5 /cpp/src/Ice/OutgoingAsync.cpp | |
parent | Fixed iOS and PHP7 shadow warning related build failures (diff) | |
download | ice-1c72f5304e91f2e55b117bfd1f8ddb357c96bf19.tar.bz2 ice-1c72f5304e91f2e55b117bfd1f8ddb357c96bf19.tar.xz ice-1c72f5304e91f2e55b117bfd1f8ddb357c96bf19.zip |
Fixed fallthrough warnings + clang 3.x fixes
Diffstat (limited to 'cpp/src/Ice/OutgoingAsync.cpp')
-rw-r--r-- | cpp/src/Ice/OutgoingAsync.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/Ice/OutgoingAsync.cpp b/cpp/src/Ice/OutgoingAsync.cpp index 5883ec11a5a..f3e35523fdf 100644 --- a/cpp/src/Ice/OutgoingAsync.cpp +++ b/cpp/src/Ice/OutgoingAsync.cpp @@ -1036,6 +1036,7 @@ OutgoingAsync::response() ex->facet = facet; ex->operation = operation; ex->ice_throw(); + break; } case replyUnknownException: @@ -1075,6 +1076,7 @@ OutgoingAsync::response() ex->unknown = unknown; ex->ice_throw(); + break; } default: |