util: Fix missing noexcept compile error on CI

This commit is contained in:
Joshua Scott 2018-12-09 23:28:40 +00:00
parent 19324c06ba
commit 62fc1e13ef
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ namespace ki
m_what = oss.str();
}
char const* what() const override
char const* what() const noexcept override
{
return m_what.c_str();
}