gmqcc.ini.example: DIFFERENT_QUALIFIERS, DIFFERENT_ATTRIBUTES

This commit is contained in:
Wolfgang Bumiller 2012-12-29 17:41:01 +01:00
parent 64ccc88a9e
commit d961cfb855

View file

@ -198,6 +198,13 @@
# Warn about non-constant global variables with no initializing value.
UNINITIALIZED_GLOBAL = true
# Redeclaring a 'const' as 'var' or the other way round.
DIFFERENT_QUALIFIERS = true
# Redeclaring a function with different attributes such as
# [[noreturn]]
DIFFERENT_ATTRIBUTES = true
# Finally these are all the optimizations, usually present via the -O
# prefix from the command line.
[optimizations]