From 4bd0f9e70d18f66aae9df29681b8a9ef1fba7490 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Tue, 25 Sep 2007 17:27:04 +0000 Subject: [PATCH] Supply std:: to fix Borland 5.9.2 errors [SVN r39525] --- include/boost/system/system_error.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/system/system_error.hpp b/include/boost/system/system_error.hpp index 3d39ecf..3b4204b 100644 --- a/include/boost/system/system_error.hpp +++ b/include/boost/system/system_error.hpp @@ -51,14 +51,14 @@ namespace boost { try { - m_what = this->runtime_error::what(); + m_what = this->std::runtime_error::what(); if ( m_error_code ) { if ( !m_what.empty() ) m_what += ": "; m_what += m_error_code.message(); } } - catch (...) { return runtime_error::what(); } + catch (...) { return std::runtime_error::what(); } } return m_what.c_str(); }