Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-10 08:36:20

0001 //===--- IncludeOrderCheck.h - clang-tidy -----------------------*- C++ -*-===//
0002 //
0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004 // See https://llvm.org/LICENSE.txt for license information.
0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0006 //
0007 //===----------------------------------------------------------------------===//
0008 
0009 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_LLVM_INCLUDEORDERCHECK_H
0010 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_LLVM_INCLUDEORDERCHECK_H
0011 
0012 #include "../ClangTidyCheck.h"
0013 
0014 namespace clang::tidy::llvm_check {
0015 
0016 /// Checks the correct order of `#includes`.
0017 ///
0018 /// See http://llvm.org/docs/CodingStandards.html#include-style
0019 class IncludeOrderCheck : public ClangTidyCheck {
0020 public:
0021   IncludeOrderCheck(StringRef Name, ClangTidyContext *Context)
0022       : ClangTidyCheck(Name, Context) {}
0023   void registerPPCallbacks(const SourceManager &SM, Preprocessor *PP,
0024                            Preprocessor *ModuleExpanderPP) override;
0025 };
0026 
0027 } // namespace clang::tidy::llvm_check
0028 
0029 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_LLVM_INCLUDEORDERCHECK_H