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
commitd67d47bcc9324164752bbf9948d0e6870b3efb05 (patch)
tree4597a5ae53bef138dc8b065b61e3e464bf788eb1
parentdc4ef6282e60541161216d92c9693a87c64ae671 (diff)
downloadqpid-python-d67d47bcc9324164752bbf9948d0e6870b3efb05.tar.gz
NO-JIRA: Fix switch statement not covering all cases warning
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1559021 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/bindings/qmf2/examples/cpp/agent.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/qpid/cpp/bindings/qmf2/examples/cpp/agent.cpp b/qpid/cpp/bindings/qmf2/examples/cpp/agent.cpp
index 8751ed4b38..faa5d5f4ca 100644
--- a/qpid/cpp/bindings/qmf2/examples/cpp/agent.cpp
+++ b/qpid/cpp/bindings/qmf2/examples/cpp/agent.cpp
@@ -178,6 +178,8 @@ void ExampleAgent::run()
case AGENT_METHOD:
running = method(event);
break;
+ default:
+ break;
}
}
}