mirror of https://github.com/bitcoin/bitcoin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
749 B
23 lines
749 B
// 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>
|
|
#include <clang-tidy/ClangTidyModuleRegistry.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;
|