Skip to content
Snippets Groups Projects
Commit e7a514dd authored by Reiner Hauser's avatar Reiner Hauser
Browse files

add noexcept specifier for Boost 1.55

parent 93226416
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ public:
static ErrorCategory& instance();
const char* name() const;
const char* name() const noexcept;
std::string message(int value) const;
private:
......
......@@ -10,7 +10,7 @@ ErrorCategory& ErrorCategory::instance()
return s_instance;
}
const char* ErrorCategory::name() const
const char* ErrorCategory::name() const noexcept
{
return "asyncmsg";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment