$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: bdawes_at_[hidden]
Date: 2007-09-25 13:27:07
Author: bemandawes
Date: 2007-09-25 13:27:04 EDT (Tue, 25 Sep 2007)
New Revision: 39525
URL: http://svn.boost.org/trac/boost/changeset/39525
Log:
Supply std:: to fix Borland 5.9.2 errors
Text files modified:
trunk/boost/system/system_error.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/system/system_error.hpp
==============================================================================
--- trunk/boost/system/system_error.hpp (original)
+++ trunk/boost/system/system_error.hpp 2007-09-25 13:27:04 EDT (Tue, 25 Sep 2007)
@@ -51,14 +51,14 @@
{
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();
}