mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-05 19:26:17 +00:00
```bash
15 | #warning The ClangTidyModuleRegistry.h header is deprecated and will be removed in LLVM 24. All of the symbols it used to define have been moved into ClangTidyModule.h.
| ^~~~~~~
[100%] Linking CXX shared module libbitcoin-tidy.so
```
22 lines
701 B
C++
22 lines
701 B
C++
// Copyright (c) 2023 Bitcoin Developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include "nontrivial-threadlocal.h"
|
|
|
|
#include <clang-tidy/ClangTidyModule.h>
|
|
|
|
class BitcoinModule final : public clang::tidy::ClangTidyModule
|
|
{
|
|
public:
|
|
void addCheckFactories(clang::tidy::ClangTidyCheckFactories& CheckFactories) override
|
|
{
|
|
CheckFactories.registerCheck<bitcoin::NonTrivialThreadLocal>("bitcoin-nontrivial-threadlocal");
|
|
}
|
|
};
|
|
|
|
static clang::tidy::ClangTidyModuleRegistry::Add<BitcoinModule>
|
|
X("bitcoin-module", "Adds bitcoin checks.");
|
|
|
|
volatile int BitcoinModuleAnchorSource = 0;
|