]> granicus.if.org Git - clang/commitdiff
Comment fix, ParseAST does not take ownership of the consumer.
authorDaniel Dunbar <daniel@zuster.org>
Mon, 27 Oct 2008 22:01:05 +0000 (22:01 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Mon, 27 Oct 2008 22:01:05 +0000 (22:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58281 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Sema/ParseAST.h
lib/Sema/ParseAST.cpp

index 60249ede8d892f32c8520f5f253fdfae1361cc96..91d7f1aa36b6048536c23415b7e75d634c4d2ee1 100644 (file)
@@ -19,8 +19,7 @@ namespace clang {
   class ASTConsumer;
   
   /// ParseAST - Parse the entire file specified, notifying the ASTConsumer as
-  /// the file is parsed.  This takes ownership of the ASTConsumer and
-  /// ultimately deletes it.
+  /// the file is parsed.
   ///
   /// \param FreeMemory If false, the memory used for AST elements is
   /// not released.
index 567cfc27630d0911a1d74d92494df1b3a2cafbb7..272615cceb14a13a48d78e4aeef995c993b98601 100644 (file)
@@ -24,8 +24,7 @@ using 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.
+/// the file is parsed.
 ///
 /// \param FreeMemory If false, the memory used for AST elements is
 /// not released.