I maintain a few buildbots for open source projects and have taken the approach of using -Weverything then -Wno-foobar to disable some warnings.
Recently one clang bot had a -Wundefined-bool-conversion warning that my bot didn't. The reason is that I have '-Weverything -Wno-conversion' in there.
So I set about trying to get finer grain control. I tried:
I maintain a few buildbots for open source projects and have taken the
approach of using -Weverything then -Wno-foobar to disable some
warnings.
Recently one clang bot had a -Wundefined-bool-conversion warning that
my bot didn't. The reason is that I have '-Weverything
-Wno-conversion' in there.
So I set about trying to get finer grain control. I tried: