| Index: third_party/re2/BUILD.gn
|
| diff --git a/third_party/re2/BUILD.gn b/third_party/re2/BUILD.gn
|
| index 2bc130adbd38fca629a961e3fcb4af62e1d7d77d..ca1f7a201c21bad24d0e081869cb3d01dd3619fb 100644
|
| --- a/third_party/re2/BUILD.gn
|
| +++ b/third_party/re2/BUILD.gn
|
| @@ -67,7 +67,10 @@ static_library("re2") {
|
|
|
| if (is_win) {
|
| include_dirs = [ "mswin" ]
|
| - cflags = [ "/wd4722" ] # Destructor never terminates.
|
| + cflags = [
|
| + "/wd4018", # Signed/unsigned mismatch in comparison.
|
| + "/wd4722", # Destructor never terminates.
|
| + ]
|
| } else {
|
| sources -= [ "mswin/stdint.h" ]
|
| }
|
|
|