forked from boostorg/system
Supply std:: to fix Borland 5.9.2 errors
[SVN r39525]
This commit is contained in:
@@ -51,14 +51,14 @@ namespace boost
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
m_what = this->runtime_error::what();
|
m_what = this->std::runtime_error::what();
|
||||||
if ( m_error_code )
|
if ( m_error_code )
|
||||||
{
|
{
|
||||||
if ( !m_what.empty() ) m_what += ": ";
|
if ( !m_what.empty() ) m_what += ": ";
|
||||||
m_what += m_error_code.message();
|
m_what += m_error_code.message();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (...) { return runtime_error::what(); }
|
catch (...) { return std::runtime_error::what(); }
|
||||||
}
|
}
|
||||||
return m_what.c_str();
|
return m_what.c_str();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user