C++ Logo

std-proposals

Advanced search

proposal: [[noexcept]] attribute

From: Walt Karas <wkaras_at_[hidden]>
Date: Wed, 23 Oct 2019 12:53:36 +0000 (UTC)
I propose adding noexcept as an attribute. It would be used after a function call to a noexcept(false) function. It asserts that, in that context, the function will not throw any exceptions. I also propose that, if a function that only has calls to noexcept functions, or calls with the [[noexcept]] attribute, the compiler must emit a diagnostic (presumably a warning) if the function is noexcept(false).

Received on 2019-10-23 07:56:35