We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
EXP52-CPP
Exclude uses of operators with unevaluated operands where they are already in unevaluated contexts, as the scope for confusion is less.
template<typename T> void foo(T t) noexcept(noexcept(some_function(t))) { some_function(t); }
Status