fix missing noexcept

This commit is contained in:
Jan 2022-03-22 21:32:17 +01:00
parent 0bca307208
commit 9009543c58

View File

@ -18,7 +18,7 @@ const std::string& SizeCalculationException::Message() const
return m_message; return m_message;
} }
char const* SizeCalculationException::what() const char const* SizeCalculationException::what() const noexcept
{ {
return m_message.c_str(); return m_message.c_str();
} }