Skip to content

Commit 3bd5e90

Browse files
MarcoFalkem3dwards
MarcoFalke
authored andcommitted
Remove redundant unterminated-logprintf tidy check
1 parent 5d4c14c commit 3bd5e90

File tree

6 files changed

+3
-202
lines changed

6 files changed

+3
-202
lines changed

contrib/devtools/bitcoin-tidy/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ find_program(CLANG_TIDY_EXE NAMES "clang-tidy-${LLVM_VERSION_MAJOR}" "clang-tidy
2525
message(STATUS "Found LLVM ${LLVM_PACKAGE_VERSION}")
2626
message(STATUS "Found clang-tidy: ${CLANG_TIDY_EXE}")
2727

28-
add_library(bitcoin-tidy MODULE bitcoin-tidy.cpp logprintf.cpp nontrivial-threadlocal.cpp)
28+
add_library(bitcoin-tidy MODULE bitcoin-tidy.cpp nontrivial-threadlocal.cpp)
2929
target_include_directories(bitcoin-tidy SYSTEM PRIVATE ${LLVM_INCLUDE_DIRS})
3030

3131
# Disable RTTI and exceptions as necessary
@@ -58,7 +58,7 @@ else()
5858
endif()
5959

6060
# Create a dummy library that runs clang-tidy tests as a side-effect of building
61-
add_library(bitcoin-tidy-tests OBJECT EXCLUDE_FROM_ALL example_logprintf.cpp example_nontrivial-threadlocal.cpp)
61+
add_library(bitcoin-tidy-tests OBJECT EXCLUDE_FROM_ALL example_nontrivial-threadlocal.cpp)
6262
add_dependencies(bitcoin-tidy-tests bitcoin-tidy)
6363

6464
set_target_properties(bitcoin-tidy-tests PROPERTIES CXX_CLANG_TIDY "${CLANG_TIDY_COMMAND}")

contrib/devtools/bitcoin-tidy/bitcoin-tidy.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// Distributed under the MIT software license, see the accompanying
33
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
44

5-
#include "logprintf.h"
65
#include "nontrivial-threadlocal.h"
76

87
#include <clang-tidy/ClangTidyModule.h>
@@ -13,7 +12,6 @@ class BitcoinModule final : public clang::tidy::ClangTidyModule
1312
public:
1413
void addCheckFactories(clang::tidy::ClangTidyCheckFactories& CheckFactories) override
1514
{
16-
CheckFactories.registerCheck<bitcoin::LogPrintfCheck>("bitcoin-unterminated-logprintf");
1715
CheckFactories.registerCheck<bitcoin::NonTrivialThreadLocal>("bitcoin-nontrivial-threadlocal");
1816
}
1917
};

contrib/devtools/bitcoin-tidy/example_logprintf.cpp

-108
This file was deleted.

contrib/devtools/bitcoin-tidy/logprintf.cpp

-60
This file was deleted.

contrib/devtools/bitcoin-tidy/logprintf.h

-29
This file was deleted.

test/lint/lint-format-strings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def main():
6262

6363
matching_files_filtered = []
6464
for matching_file in matching_files:
65-
if not re.search('^src/(leveldb|secp256k1|minisketch|tinyformat|test/fuzz/strprintf.cpp)|contrib/devtools/bitcoin-tidy/example_logprintf.cpp', matching_file):
65+
if not re.search('^src/(leveldb|secp256k1|minisketch|tinyformat|test/fuzz/strprintf.cpp)', matching_file):
6666
matching_files_filtered.append(matching_file)
6767
matching_files_filtered.sort()
6868

0 commit comments

Comments
 (0)