bolt/deps/llvm-18.1.8/clang-tools-extra/clang-tidy/tool/ClangTidyMain.h

22 lines
814 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
//===--- tools/extra/clang-tidy/ClangTidyMain.h - Clang tidy tool -------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
///
/// \file This file declares the main function for the clang-tidy tool.
///
/// This tool uses the Clang Tooling infrastructure, see
/// http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html
/// for details on setting it up with LLVM source tree.
///
//===----------------------------------------------------------------------===//
namespace clang::tidy {
int clangTidyMain(int argc, const char **argv);
} // namespace clang::tidy