Forbid VLAs

This commit is contained in:
Sebastian Ramacher 2018-03-04 11:14:01 +01:00
parent 5baa31b83d
commit 85019b5312

View file

@ -58,7 +58,8 @@ flags = [
'-Wall', '-Wall',
'-Wextra', '-Wextra',
'-pedantic', '-pedantic',
'-Werror=implicit-function-declaration' '-Werror=implicit-function-declaration',
'-Werror=vla'
] ]
flags = cc.get_supported_arguments(flags) flags = cc.get_supported_arguments(flags)