Back to home page

EIC code displayed by LXR

 
 

    


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

0001 //===--- tools/extra/clang-tidy/ClangTidyMain.h - Clang tidy tool -------===//
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 ///  \file This file declares the main function for the clang-tidy tool.
0010 ///
0011 ///  This tool uses the Clang Tooling infrastructure, see
0012 ///    http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html
0013 ///  for details on setting it up with LLVM source tree.
0014 ///
0015 //===----------------------------------------------------------------------===//
0016 
0017 namespace clang::tidy {
0018 
0019 int clangTidyMain(int argc, const char **argv);
0020 
0021 } // namespace clang::tidy