]> granicus.if.org Git - clang/commitdiff
Fix 80 col violation
authorTed Kremenek <kremenek@apple.com>
Thu, 7 Aug 2008 19:48:19 +0000 (19:48 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 7 Aug 2008 19:48:19 +0000 (19:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54487 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Sema/ParseAST.h

index 9f6690a0bdc70decbb1f4f3ffccc0b3a8b8f5887..4d77a58abd8ec04b0608d5901604a4b4436a02ba 100644 (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