From 9dd8024e41f35e581b3db5f4a873126398db9d45 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 25 Nov 2014 02:07:40 -0500 Subject: [PATCH] Don't add non-clang flag regardless of platform. --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 6a945ab066..27f21ab248 100644 --- a/wscript +++ b/wscript @@ -386,7 +386,7 @@ def set_compiler_flags (conf,opt): c_flags.extend(('-Wstrict-prototypes', '-Wmissing-prototypes')) cxx_flags.append('-Woverloaded-virtual') - if (not is_clang and not platform == "darwin"): + if not is_clang: cxx_flags.append('-Wno-unused-local-typedefs') #