Replaced throw() with BOOST_NOEXCEPT_OR_NOTHROW

With throw(), Visual Studio 2017 emitted a warning "C26439 SPECIAL_NOEXCEPT". Reproducible at least if code analysis was set to level: "Microsoft Native Recommended Rules".

https://docs.microsoft.com/en-us/visualstudio/code-quality/c26439?view=vs-2017
This commit is contained in:
Juha
2019-01-28 09:48:53 +02:00
parent de6cef966b
commit 607268dd8e
13 changed files with 24 additions and 24 deletions

View File

@ -73,7 +73,7 @@ derives_std_boost_exception:
{
}
char const * what() const throw()
char const * what() const BOOST_NOEXCEPT_OR_NOTHROW
{
return wh_;
}