[SVN r84054]
This commit is contained in:
Ion Gaztañaga
2013-04-26 19:46:47 +00:00
parent a40fd4d49d
commit 1253e6b312

View File

@@ -214,7 +214,7 @@ struct allocator_traits
//! //!
//! <b>Throws</b>: Nothing //! <b>Throws</b>: Nothing
static void deallocate(Alloc &a, pointer p, size_type n) static void deallocate(Alloc &a, pointer p, size_type n)
{ return a.deallocate(p, n); } { a.deallocate(p, n); }
//! <b>Effects</b>: calls `a.allocate(n, p)` if that call is well-formed; //! <b>Effects</b>: calls `a.allocate(n, p)` if that call is well-formed;
//! otherwise, invokes `a.allocate(n)` //! otherwise, invokes `a.allocate(n)`