git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54487 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2008-08-07 19:48:19 +00:00
Родитель 159346a82b
Коммит 7cf0a7a4c6
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -21,7 +21,9 @@ namespace clang {
/// ParseAST - Parse the entire file specified, notifying the ASTConsumer as
/// the file is parsed. This takes ownership of the ASTConsumer and
/// ultimately deletes it.
void ParseAST(Preprocessor &pp, ASTConsumer *C, bool PrintStats = false, bool DeleteConsumer = true);
void ParseAST(Preprocessor &pp, ASTConsumer *C, bool PrintStats = false,
bool DeleteConsumer = true);
} // end namespace clang
#endif