git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63961 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2009-02-06 21:15:34 +00:00
Родитель 7a06aae468
Коммит 4398a78095
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -611,7 +611,7 @@ private:
/// @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 @@ inline void operator delete(void *Ptr, clang::ASTContext &C)
/// @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.