Fix 80 col violation

llvm-svn: 54487
This commit is contained in:
Ted Kremenek 2008-08-07 19:48:19 +00:00
parent 7db4f60b26
commit 87a7d31a9f
1 changed files with 3 additions and 1 deletions

View File

@ -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