Browse Source

Merge pull request #4847 from depristo/master

Remove write-strings warning from COPTs
Feng Xiao 7 years ago
parent
commit
00f118f0c3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      BUILD

+ 1 - 1
BUILD

@@ -43,12 +43,12 @@ COPTS = select({
     "//conditions:default": [
         "-DHAVE_PTHREAD",
         "-Wall",
-        "-Wwrite-strings",
         "-Woverloaded-virtual",
         "-Wno-sign-compare",
         "-Wno-unused-function",
         # Prevents ISO C++ const string assignment warnings for pyext sources.
         "-Wno-writable-strings",
+        "-Wno-write-strings",
     ],
 })