From e3de973e9ad12c8919332d4fe95dcf058dc745e2 Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Tue, 5 Sep 2023 08:45:15 +0200 Subject: [PATCH] Disable false positive warning from GCC --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 665234de..95469979 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -100,14 +100,14 @@ jobs: LDFLAGS: -fsanitize=address,undefined - name: Debian-Testing image: "debian:testing" - CXXFLAGS: -Wno-stringop-overread + CXXFLAGS: -Wno-stringop-overread -Wno-dangling-reference - name: Debian-Testing image: "debian:testing" c_compiler: clang cpp_compiler: clang++ - name: Debian-Experimental image: "debian:experimental" - CXXFLAGS: -Wno-stringop-overread + CXXFLAGS: -Wno-stringop-overread -Wno-dangling-reference - name: Debian-Experimental image: "debian:experimental" c_compiler: clang