E.30: Remove suggestion to use throw()

Removed the suggestion to use `throw()` from E.30 ("Don't use exception specifications"), as it was deprecated by C++11, and is rejected by C++20.
This commit is contained in:
Niels Dekker 2020-09-21 19:16:05 +02:00
parent 2e3f983971
commit 0d46b2006c

View File

@ -16330,7 +16330,7 @@ For example, see [Stroustrup94](#Stroustrup94).
##### Note
If no exception can be thrown, use [`noexcept`](#Re-noexcept) or its equivalent `throw()`.
If no exception can be thrown, use [`noexcept`](#Re-noexcept).
##### Enforcement