From 2bfd2fa0fd29fee8545c99e8bdcc2403c4fef540 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Thu, 23 Feb 2006 17:14:59 +0000 Subject: [PATCH] Add missing exception specification. [SVN r33090] --- test/module_tail.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/module_tail.cpp b/test/module_tail.cpp index 73a24047..ac885cf5 100644 --- a/test/module_tail.cpp +++ b/test/module_tail.cpp @@ -35,6 +35,8 @@ struct test_failure : std::exception test_failure(char const* expr, char const* function, char const* file, unsigned line) : msg(file + boost::python::str(":%s:") % line + ": Boost.Python assertion failure: " + expr) {} + + ~test_failure() throw() {} char const* what() throw() {