[cfe-commits] r54487 - /cfe/trunk/include/clang/Sema/ParseAST.h
Ted Kremenek
kremenek at apple.com
Thu Aug 7 12:48:20 PDT 2008
Author: kremenek
Date: Thu Aug 7 14:48:19 2008
New Revision: 54487
URL: http://llvm.org/viewvc/llvm-project?rev=54487&view=rev
Log:
Fix 80 col violation
Modified:
cfe/trunk/include/clang/Sema/ParseAST.h
Modified: cfe/trunk/include/clang/Sema/ParseAST.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Sema/ParseAST.h?rev=54487&r1=54486&r2=54487&view=diff
==============================================================================
--- cfe/trunk/include/clang/Sema/ParseAST.h (original)
+++ cfe/trunk/include/clang/Sema/ParseAST.h Thu Aug 7 14:48:19 2008
@@ -21,7 +21,9 @@
/// 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
More information about the cfe-commits
mailing list