From 8180cb6387edff2bd66cf70b31ba989b2eba7590 Mon Sep 17 00:00:00 2001 From: sunyaozu Date: Wed, 12 Jun 2024 20:36:14 +0800 Subject: [PATCH] fix codex warnings Signed-off-by: sunyaozu --- cpp/BUILD.gn | 1 - cpp/test/BUILD.gn | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/cpp/BUILD.gn b/cpp/BUILD.gn index 6044d24..f9979af 100644 --- a/cpp/BUILD.gn +++ b/cpp/BUILD.gn @@ -38,7 +38,6 @@ config("phonenumber_config") { "-Dphonenumber_shared_EXPORTS", "-Wall", "-fPIC", - "-U__ANDROID__", "-Wno-sign-compare", "-Wno-error=unused-parameter", "-Wno-error=unused-const-variable", diff --git a/cpp/test/BUILD.gn b/cpp/test/BUILD.gn index c1b0fbd..a5f820f 100644 --- a/cpp/test/BUILD.gn +++ b/cpp/test/BUILD.gn @@ -9,7 +9,7 @@ # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and -# limitations under the License. +# limitations under the License. import("//build/test.gni") @@ -35,7 +35,6 @@ config("phonenumber_test_config") { "-Wall", "-Werror", "-fPIC", - "-U__ANDROID__", "-Wno-sign-compare", "-Wno-error=unused-parameter", "-Wno-error=unused-const-variable", -- Gitee