Unverified Commit 00f118f0 authored by Feng Xiao's avatar Feng Xiao Committed by GitHub

Merge pull request #4847 from depristo/master

Remove write-strings warning from COPTs
parents 98fcd876 42141fa2
...@@ -43,12 +43,12 @@ COPTS = select({ ...@@ -43,12 +43,12 @@ COPTS = select({
"//conditions:default": [ "//conditions:default": [
"-DHAVE_PTHREAD", "-DHAVE_PTHREAD",
"-Wall", "-Wall",
"-Wwrite-strings",
"-Woverloaded-virtual", "-Woverloaded-virtual",
"-Wno-sign-compare", "-Wno-sign-compare",
"-Wno-unused-function", "-Wno-unused-function",
# Prevents ISO C++ const string assignment warnings for pyext sources. # Prevents ISO C++ const string assignment warnings for pyext sources.
"-Wno-writable-strings", "-Wno-writable-strings",
"-Wno-write-strings",
], ],
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment