diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2014-01-17 06:25:39 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2014-01-17 06:25:39 +0000 |
| commit | 4c6939b574e30a3dd6e9e7277086532b3aa6e5f8 (patch) | |
| tree | eeccc787dcef1c0451d998d3cccaf90f63e96eee /cpp | |
| parent | 0e3d465bfd951e2d5627ae996b104b1e0f7387a6 (diff) | |
| download | qpid-python-4c6939b574e30a3dd6e9e7277086532b3aa6e5f8.tar.gz | |
NO-JIRA: Fix switch statement not covering all cases warning
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1559021 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
| -rw-r--r-- | cpp/bindings/qmf2/examples/cpp/agent.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/bindings/qmf2/examples/cpp/agent.cpp b/cpp/bindings/qmf2/examples/cpp/agent.cpp index 8751ed4b38..faa5d5f4ca 100644 --- a/cpp/bindings/qmf2/examples/cpp/agent.cpp +++ b/cpp/bindings/qmf2/examples/cpp/agent.cpp @@ -178,6 +178,8 @@ void ExampleAgent::run() case AGENT_METHOD: running = method(event); break; + default: + break; } } } |
