Supply std:: to fix Borland 5.9.2 errors

[SVN r39525]
This commit is contained in:
Beman Dawes
2007-09-25 17:27:04 +00:00
parent 4a364b1532
commit 4bd0f9e70d

View File

@@ -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();
}