diff options
Diffstat (limited to 'absl/copts/copts.py')
-rw-r--r-- | absl/copts/copts.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/absl/copts/copts.py b/absl/copts/copts.py index 8a0ecf6b75ac..5bede34cb8e7 100644 --- a/absl/copts/copts.py +++ b/absl/copts/copts.py @@ -70,6 +70,8 @@ LLVM_DISABLE_WARNINGS_FLAGS = [ # Causes warnings on include guards "-Wno-unused-macros", "-Wno-weak-vtables", + # Causes warnings on usage of types/compare.h comparison operators. + "-Wno-zero-as-null-pointer-constant", ### # Implicit conversion warnings turned off by -Wno-conversion # which are re-enabled below. |