Browse Source

Merge pull request #4847 from depristo/master

Remove write-strings warning from COPTs
Feng Xiao 7 năm trước cách đây
mục cha
commit
00f118f0c3
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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",
     ],
 })