On Sat, 2015-10-24 at 15:47 +0200, Gerald Pfeifer wrote: > On Wed, 7 Oct 2015, Bernd Schmidt wrote: > > I think not using -Wall -Werror is the right fix. > > Of course there is a fair chance (and I'll likely end up proposing > this for Wine) is that people will use -Wnounused-variable instead. > > Which will disable _all_ such warnings, not only those coming from > const ... ... = ...;
Then use -Wno-unused-const-variable, not -Wno-unused-variable, if you only want to suppress the new warning. Cheers, Mark