From 3f2949a451c27a16886a37e8e8bd15156699cd66 Mon Sep 17 00:00:00 2001 From: David Sisson Date: Thu, 25 Jul 2024 21:30:58 -0700 Subject: [PATCH] ignore another warning --- scripts/run-clang-tidy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-clang-tidy.sh b/scripts/run-clang-tidy.sh index 211d4458..d7b29484 100755 --- a/scripts/run-clang-tidy.sh +++ b/scripts/run-clang-tidy.sh @@ -4,7 +4,7 @@ SCRIPTDIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) WORKDIR="$( cd $SCRIPTDIR/.. && pwd )" # Make compile_command.json -export CXXFLAGS=-Wno-attributes +export CXXFLAGS="-Wno-attributes -Wno-deprecated-declaraations" rm -rf tmp && mkdir tmp && cmake -Btmp -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DSUBSTRAIT_CPP_ROUNDTRIP_TESTING=ON # Build substrait protobuf pushd tmp/src/substrait/proto && make -j && popd || exit