summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/cpp11-migrate/Core/SyntaxCheck.h
blob: e845971af7a8e59d82c11d698dd87f424eaa19ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//===-- 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 CPP11_MIGRATE_SYNTAX_CHECK_H
#define CPP11_MIGRATE_SYNTAX_CHECK_H

#include "Core/FileOverrides.h"

#include <vector>

// Forward Declarations
namespace clang {
namespace tooling {
class CompilationDatabase;
} // namespace tooling
} // namespace clang

/// \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 // CPP11_MIGRATE_SYNTAX_CHECK_H
OpenPOWER on IntegriCloud