codeql-coding-standards
codeql-coding-standards copied to clipboard
`EXP52-CPP`: Exclude uses of operators with unevaluated operands in already unevaluated contexts
Affected rules
-
EXP52-CPP
Description
Exclude uses of operators with unevaluated operands where they are already in unevaluated contexts, as the scope for confusion is less.
Example
template<typename T>
void foo(T t) noexcept(noexcept(some_function(t))) {
some_function(t);
}
Reassigning and re-categorising to High impact based on https://github.com/github/codeql-coding-standards/issues/91.