// Copyright (c) 2023 Limenka 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 #include class LimenkaModule final : public clang::tidy::ClangTidyModule { public: void addCheckFactories(clang::tidy::ClangTidyCheckFactories& CheckFactories) override { CheckFactories.registerCheck("limenka-nontrivial-threadlocal"); } }; static clang::tidy::ClangTidyModuleRegistry::Add X("limenka-module", "Adds limenka checks."); volatile int LimenkaModuleAnchorSource = 0;