From 45d4aacb53682afbf617f90bd9691b5eb136a2ef Mon Sep 17 00:00:00 2001 From: Jingchen Date: Tue, 21 Apr 2026 19:15:58 +0100 Subject: [PATCH 1/2] chore: Remove empty Taker.h (#6984) --- src/xrpld/app/tx/detail/Taker.h | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/xrpld/app/tx/detail/Taker.h diff --git a/src/xrpld/app/tx/detail/Taker.h b/src/xrpld/app/tx/detail/Taker.h deleted file mode 100644 index e69de29bb2..0000000000 From 7c7c1894b917e8ec09c6833a3b9614f7e2303dd7 Mon Sep 17 00:00:00 2001 From: Alex Kremer Date: Tue, 21 Apr 2026 20:00:00 +0100 Subject: [PATCH 2/2] chore: Add -fix to clang-tidy invocation (#6990) --- .github/workflows/reusable-clang-tidy-files.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable-clang-tidy-files.yml b/.github/workflows/reusable-clang-tidy-files.yml index 3a0df1a6a1..9b99f418b1 100644 --- a/.github/workflows/reusable-clang-tidy-files.yml +++ b/.github/workflows/reusable-clang-tidy-files.yml @@ -80,7 +80,7 @@ jobs: env: TARGETS: ${{ inputs.files != '' && inputs.files || 'src tests' }} run: | - run-clang-tidy -j ${{ steps.nproc.outputs.nproc }} -p "${BUILD_DIR}" -quiet -allow-no-checks ${TARGETS} 2>&1 | tee clang-tidy-output.txt + run-clang-tidy -j ${{ steps.nproc.outputs.nproc }} -p "${BUILD_DIR}" -quiet -fix -allow-no-checks ${TARGETS} 2>&1 | tee clang-tidy-output.txt - name: Upload clang-tidy output if: ${{ github.event.repository.visibility == 'public' && steps.run_clang_tidy.outcome != 'success' }}