[cfe-commits] r63961 - /cfe/trunk/include/clang/AST/ASTContext.h
Ted Kremenek
kremenek at apple.com
Fri Feb 6 13:15:35 PST 2009
Author: kremenek
Date: Fri Feb 6 15:15:34 2009
New Revision: 63961
URL: http://llvm.org/viewvc/llvm-project?rev=63961&view=rev
Log:
Update comment.
Modified:
cfe/trunk/include/clang/AST/ASTContext.h
Modified: cfe/trunk/include/clang/AST/ASTContext.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ASTContext.h?rev=63961&r1=63960&r2=63961&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/ASTContext.h (original)
+++ cfe/trunk/include/clang/AST/ASTContext.h Fri Feb 6 15:15:34 2009
@@ -611,7 +611,7 @@
/// @endcode
/// Please note that you cannot use delete on the pointer; it must be
/// deallocated using an explicit destructor call followed by
-/// @c Context.getAllocator().Deallocate(Ptr)
+/// @c Context.Deallocate(Ptr).
///
/// @param Bytes The number of bytes to allocate. Calculated by the compiler.
/// @param C The ASTContext that provides the allocator.
@@ -645,7 +645,7 @@
/// @endcode
/// Please note that you cannot use delete on the pointer; it must be
/// deallocated using an explicit destructor call followed by
-/// @c Context.getAllocator().Deallocate(Ptr)
+/// @c Context.Deallocate(Ptr).
///
/// @param Bytes The number of bytes to allocate. Calculated by the compiler.
/// @param C The ASTContext that provides the allocator.
More information about the cfe-commits
mailing list