Merge pull request #4847 from depristo/master

Remove write-strings warning from COPTs
This commit is contained in:
Feng Xiao 2018-07-02 09:48:11 -07:00 committed by GitHub
commit 00f118f0c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
BUILD
View File

@ -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",
],
})