From 5d1053552c2ecb20e7dfcda03b409eace8228ae9 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Tue, 28 Feb 2006 01:32:33 +0000 Subject: [PATCH] missing const added (MIPSpro 7.3 warning) [SVN r33165] --- test/module_tail.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/module_tail.cpp b/test/module_tail.cpp index ac885cf5..594949ef 100644 --- a/test/module_tail.cpp +++ b/test/module_tail.cpp @@ -38,7 +38,7 @@ struct test_failure : std::exception ~test_failure() throw() {} - char const* what() throw() + char const* what() const throw() { return boost::python::extract(msg)(); }