System/FileSystem/Asio/Thread: ref #7278 Added noexcept to Boost.System to conform with C++11

[SVN r81808]
This commit is contained in:
Vicente J. Botet Escriba
2012-12-09 14:47:39 +00:00
parent 60e765873f
commit 15491b6fcf

View File

@@ -35,11 +35,11 @@ namespace
{
public:
codecvt_error_cat(){}
const char* name() const;
const char* name() const BOOST_SYSTEM_NOEXCEPT;
std::string message(int ev) const;
};
const char* codecvt_error_cat::name() const
const char* codecvt_error_cat::name() const BOOST_SYSTEM_NOEXCEPT
{
return "codecvt";
}