Live data from Hacker News

-Wsign-Compare Is Garbage

staticthinking.wordpress.com

1–3 of 3 posts

Re: -Wsign-Compare Is Garbage

#2
"The -Wsign-compare warning is old and it’s not enabled by default or even by the “warn about everything” -Wall option."

The "warn about everything" option is -Weverything, which /does/ enable -Wsign-compare.

Re: -Wsign-Compare Is Garbage

#3
post #2

"The -Wsign-compare warning is old and it’s not enabled by default or even by the “warn about everything” -Wall option." The "warn about everything" option is -Weverything, which /does/ enable -Wsign-compare.

Only with Clang. With GCC, -Wextra implicitly enables -Wsign-compare (with G++ -Wall implicitly enables it instead).