[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang-tools-extra / clang-tidy / google / IntegerTypesCheck.h
blob3be7d24021b9ffcbc25f35321d3af2a6d9f05a76
1 //===--- IntegerTypesCheck.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 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_INTEGERTYPESCHECK_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_INTEGERTYPESCHECK_H
12 #include "../ClangTidyCheck.h"
14 #include <memory>
16 namespace clang {
18 class IdentifierTable;
20 namespace tidy::google::runtime {
22 /// Finds uses of `short`, `long` and `long long` and suggest replacing them
23 /// with `u?intXX(_t)?`.
24 ///
25 /// Corresponding cpplint.py check: 'runtime/int'.
26 ///
27 /// For the user-facing documentation see:
28 /// http://clang.llvm.org/extra/clang-tidy/checks/google/runtime-int.html
29 class IntegerTypesCheck : public ClangTidyCheck {
30 public:
31 IntegerTypesCheck(StringRef Name, ClangTidyContext *Context);
32 bool isLanguageVersionSupported(const LangOptions &LangOpts) const override {
33 return LangOpts.CPlusPlus && !LangOpts.ObjC;
35 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
36 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
37 void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
39 private:
40 const StringRef UnsignedTypePrefix;
41 const StringRef SignedTypePrefix;
42 const StringRef TypeSuffix;
44 std::unique_ptr<IdentifierTable> IdentTable;
47 } // namespace tidy::google::runtime
48 } // namespace clang
50 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_INTEGERTYPESCHECK_H