lexical_cast: made use of noexcept as recommended
This commit is contained in:
parent
aeb768c7aa
commit
2eeec1cf7a
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ inline To lexical_cast(From value)
|
|||
/** Thrown when a lexical_cast fails. */
|
||||
struct bad_lexical_cast : std::exception
|
||||
{
|
||||
const char* what() const throw()
|
||||
const char* what() const NOEXCEPT
|
||||
{
|
||||
return "bad_lexical_cast";
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue