diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-02-24 16:50:05 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-02-24 16:50:05 +0000 |
commit | 728444b48efac22d2c4134b0231dc39193477e19 (patch) | |
tree | 8c515e0a31235628804974dc51eba76a2bfeef2d /cpp/demo/Ice/throughput/Client.cpp | |
parent | Extend for strings and structs (diff) | |
download | ice-728444b48efac22d2c4134b0231dc39193477e19.tar.bz2 ice-728444b48efac22d2c4134b0231dc39193477e19.tar.xz ice-728444b48efac22d2c4134b0231dc39193477e19.zip |
Added missing break statement
Diffstat (limited to 'cpp/demo/Ice/throughput/Client.cpp')
-rw-r--r-- | cpp/demo/Ice/throughput/Client.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/demo/Ice/throughput/Client.cpp b/cpp/demo/Ice/throughput/Client.cpp index 9a029d9a30b..97d03b5f771 100644 --- a/cpp/demo/Ice/throughput/Client.cpp +++ b/cpp/demo/Ice/throughput/Client.cpp @@ -234,6 +234,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) break; } } + break; } case '3': @@ -264,6 +265,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) break; } } + break; } } } |