diff options
Diffstat (limited to 'clang-tools-extra/clang-modernize/Core/SyntaxCheck.h')
-rw-r--r-- | clang-tools-extra/clang-modernize/Core/SyntaxCheck.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/clang-tools-extra/clang-modernize/Core/SyntaxCheck.h b/clang-tools-extra/clang-modernize/Core/SyntaxCheck.h deleted file mode 100644 index 508727616b4..00000000000 --- a/clang-tools-extra/clang-modernize/Core/SyntaxCheck.h +++ /dev/null @@ -1,38 +0,0 @@ -//===-- Core/SyntaxCheck.h --------------------------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -/// -/// \file -/// \brief This file exposes functionaliy for doing a syntax-only check on -/// files with overridden contents. -/// -//===----------------------------------------------------------------------===// - -#ifndef CLANG_MODERNIZE_SYNTAX_CHECK_H -#define CLANG_MODERNIZE_SYNTAX_CHECK_H - -#include <string> -#include <vector> - -// Forward Declarations -namespace clang { -namespace tooling { -class CompilationDatabase; -} // namespace tooling -} // namespace clang - -class FileOverrides; - -/// \brief Perform a syntax-only check over all files in \c SourcePaths using -/// options provided by \c Database using file contents from \c Overrides if -/// available. -extern bool doSyntaxCheck(const clang::tooling::CompilationDatabase &Database, - const std::vector<std::string> &SourcePaths, - const FileOverrides &Overrides); - -#endif // CLANG_MODERNIZE_SYNTAX_CHECK_H |