summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2014-01-17 06:25:39 +0000
committerAndrew Stitcher <astitcher@apache.org>2014-01-17 06:25:39 +0000
commit4c6939b574e30a3dd6e9e7277086532b3aa6e5f8 (patch)
treeeeccc787dcef1c0451d998d3cccaf90f63e96eee
parent0e3d465bfd951e2d5627ae996b104b1e0f7387a6 (diff)
downloadqpid-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
-rw-r--r--cpp/bindings/qmf2/examples/cpp/agent.cpp2
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;
}
}
}