ClangTidyModuleRegistry.h 761 B

123456789101112131415161718192021
  1. //===--- ClangTidyModuleRegistry.h - clang-tidy -----------------*- C++ -*-===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CLANGTIDYMODULEREGISTRY_H
  9. #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CLANGTIDYMODULEREGISTRY_H
  10. #include "ClangTidyModule.h"
  11. #include "llvm/Support/Registry.h"
  12. namespace clang::tidy {
  13. typedef llvm::Registry<ClangTidyModule> ClangTidyModuleRegistry;
  14. } // namespace clang::tidy
  15. #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CLANGTIDYMODULEREGISTRY_H