diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-04-07 12:36:22 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-04-07 12:36:22 -0400 |
commit | 7c21a025e7c849388adfd52cfe7caa289a3026e3 (patch) | |
tree | a21c8ee63b925b76e3dd51ae615db37de836cad9 /toolkit | |
parent | 59fb23c6665b6f946e558fee2ada3eb1f8de438f (diff) | |
parent | 09b78833b5c2d615f5e485029deb256f2cb3638d (diff) | |
download | UXP-7c21a025e7c849388adfd52cfe7caa289a3026e3.tar UXP-7c21a025e7c849388adfd52cfe7caa289a3026e3.tar.gz UXP-7c21a025e7c849388adfd52cfe7caa289a3026e3.tar.lz UXP-7c21a025e7c849388adfd52cfe7caa289a3026e3.tar.xz UXP-7c21a025e7c849388adfd52cfe7caa289a3026e3.zip |
Merge branch 'master' of https://github.com/MoonchildProductions/UXP
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/components/protobuf/moz.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/toolkit/components/protobuf/moz.build b/toolkit/components/protobuf/moz.build index b5015eb67..8cca3514c 100644 --- a/toolkit/components/protobuf/moz.build +++ b/toolkit/components/protobuf/moz.build @@ -117,10 +117,13 @@ DEFINES['GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER'] = True # Suppress warnings in third-party code. if CONFIG['GNU_CXX']: CXXFLAGS += [ - '-Wno-null-conversion', '-Wno-return-type', '-Wno-sign-compare', ] + if CONFIG['CLANG_CXX']: + CXXFLAGS += [ + '-Wno-null-conversion', + ] elif CONFIG['_MSC_VER']: CXXFLAGS += [ '-wd4005', # 'WIN32_LEAN_AND_MEAN' : macro redefinition |