diff options
author | Feng Xiao <xfxyjwf@gmail.com> | 2018-07-02 09:48:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-02 09:48:11 -0700 |
commit | 00f118f0c3105a8fad3482881439c5a62202880a (patch) | |
tree | cdb84adad0bc5716fe58fd2b0fbf576571f4b35c | |
parent | 98fcd8762dc48e8efe0bed9a4c4c1a6038c56661 (diff) | |
parent | 42141fa2f725a9d5e18e60e109744f178432d839 (diff) |
Merge pull request #4847 from depristo/master
Remove write-strings warning from COPTs
-rw-r--r-- | BUILD | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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", ], }) |