From c2a5e2adaf93c23fb619a939a3aff8f600f4484d Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Wed, 28 Nov 2007 19:17:37 +0000 Subject: Fix exception handling bug. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@599103 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/tests/perftest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/src/tests') diff --git a/cpp/src/tests/perftest.cpp b/cpp/src/tests/perftest.cpp index 958c2b5cb1..da0eaf0f8a 100644 --- a/cpp/src/tests/perftest.cpp +++ b/cpp/src/tests/perftest.cpp @@ -509,7 +509,7 @@ int main(int argc, char** argv) { } return 0; } - catch (const qpid::Options::Exception& e) { + catch (const std::exception& e) { cout << endl << e.what() << endl; } return 1; -- cgit v1.2.1