From 640d6cfc58195d21d21a3d15c715287eb45f1ab1 Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Sat, 28 Jun 2008 03:53:39 +0000 Subject: [PATCH] bug fix, thanks Steven Watanabe [SVN r46802] --- include/boost/exception/enable_error_info.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/exception/enable_error_info.hpp b/include/boost/exception/enable_error_info.hpp index c57d34b..fa98983 100644 --- a/include/boost/exception/enable_error_info.hpp +++ b/include/boost/exception/enable_error_info.hpp @@ -42,7 +42,7 @@ boost char const * diagnostic_information() const throw() { - return exception::_diagnostic_information(T::what()); + return boost::exception::_diagnostic_information(T::what()); } };