From 5e35a9069d655419cada6070e1f00a28d4a877f9 Mon Sep 17 00:00:00 2001 From: fanquake Date: Tue, 24 Feb 2026 10:19:39 +0000 Subject: [PATCH] interpreter: remove clang-tidy suppression --- src/script/interpreter.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/script/interpreter.cpp b/src/script/interpreter.cpp index 49fa2bd9502..443714ceeda 100644 --- a/src/script/interpreter.cpp +++ b/src/script/interpreter.cpp @@ -1258,12 +1258,8 @@ private: const CScript& scriptCode; //!< output script being consumed const unsigned int nIn; //!< input index of txTo being signed const bool fAnyoneCanPay; //!< whether the hashtype has the SIGHASH_ANYONECANPAY flag set - // Temporary workaround for a clang-tidy bug fixed in version 22. - // See: https://github.com/llvm/llvm-project/issues/160394. - // NOLINTBEGIN(modernize-use-default-member-init) const bool fHashSingle; //!< whether the hashtype is SIGHASH_SINGLE const bool fHashNone; //!< whether the hashtype is SIGHASH_NONE - // NOLINTEND(modernize-use-default-member-init) public: CTransactionSignatureSerializer(const T& txToIn, const CScript& scriptCodeIn, unsigned int nInIn, int nHashTypeIn) :