llvm-project icon indicating copy to clipboard operation
llvm-project copied to clipboard

no warning for unused std::error_code

Open Trass3r opened this issue 3 years ago • 0 comments

#include <system_error>
void foo()
{
    std::error_code ec;
}

The code does get optimized away as system_category() is [[gnu::const]] but there is no -Wunused warning.

https://godbolt.org/z/M68ToY78b

Trass3r avatar Oct 17 '22 11:10 Trass3r