diff options
Diffstat (limited to 'cpp')
-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(); |