From c201f368c592508e8f2289c3f0f19e681db153a3 Mon Sep 17 00:00:00 2001 From: Petteri Aimonen Date: Sat, 14 Nov 2015 22:37:54 +0200 Subject: Fix -Wno-pedantic on old GCC --- tests/anonymous_oneof/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/anonymous_oneof/SConscript b/tests/anonymous_oneof/SConscript index 8f634bd7..051c772f 100644 --- a/tests/anonymous_oneof/SConscript +++ b/tests/anonymous_oneof/SConscript @@ -16,7 +16,7 @@ if env.GetOption('clean') or (match and (version[0] > 2 or (version[0] == 2 and # Anonymous oneofs are supported by clang and gcc if 'clang' in env['CC'] or 'gcc' in env['CC']: env2 = env.Clone() - env2.Append(CFLAGS = "-Wno-pedantic") + env2['CFLAGS'].remove('-pedantic') env2.NanopbProto('oneof') dec = env2.Program(['decode_oneof.c', -- cgit 1.2.3-korg