blob: 8dc5e14e486eabb3665af83cf1cd16c93d138bf5 [file] [log] [blame]
zoecarver08de8162021-02-05 11:24:38 -08001====================
2``noexcept`` Policy
3====================
4
5Extended applications of ``noexcept``
6------------------------------------------
7
8As of version 13 libc++ may mark functions that do not throw (i.e.,
9"Throws: Nothing") as ``noexcept``. This has two primary consequences:
10first, functions might not report precondition violations by throwing.
11Second, user-provided functions, such as custom predicates or custom
12traits, which throw might not be propagated up to the caller (unless
13specified otherwise by the Standard).