You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I compile the examples with the c++17 standard which seems to be required, at least with g++, I get warnings about deprecated uncaught_exception in line 461 and 552 which should be replaced with the pluralform uncaught_exceptions . If I do this the code compiles without errors.
The text was updated successfully, but these errors were encountered:
Following this advice blindly does not make the code any better than before (but not worse, either). It would be an incorrect use of uncaught_exceptions() (plural) that happens to work the same way as uncaught_exception() (singular).
If I compile the examples with the c++17 standard which seems to be required, at least with g++, I get warnings about deprecated
uncaught_exception
in line 461 and 552 which should be replaced with the pluralformuncaught_exceptions
. If I do this the code compiles without errors.The text was updated successfully, but these errors were encountered: