diff options
author | Alan Conway <aconway@apache.org> | 2007-10-15 12:57:05 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-10-15 12:57:05 +0000 |
commit | d09c1c538deecfa9b30b84cf42e9ece06364a66f (patch) | |
tree | 518ef16c3f89086f7bea0061cc46b732e567a50f | |
parent | 08db4e52bd7f22a45a35750525e87747584fe906 (diff) | |
download | qpid-python-d09c1c538deecfa9b30b84cf42e9ece06364a66f.tar.gz |
Added missing framing:: qualifier.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@584776 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | cpp/src/qpid/assert.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/assert.cpp b/cpp/src/qpid/assert.cpp index c2cd84d444..82db22b0cc 100644 --- a/cpp/src/qpid/assert.cpp +++ b/cpp/src/qpid/assert.cpp @@ -32,7 +32,7 @@ void assert_fail(char const * expr, char const * function, char const * file, lo msg << "Internal error: " << expr << " in function " << function << "(" << file << ":" << line << ")"; #ifdef NDEBUG - throw InternalErrorException(msg); + throw framing::InternalErrorException(msg); #else std::cerr << msg << std::endl; abort(); |