From 0d80da3ca8472afa10d38290e82cb1b0fb1c97bf Mon Sep 17 00:00:00 2001 From: Christopher Kohlhoff Date: Mon, 7 May 2007 12:41:29 +0000 Subject: [PATCH] Fix namespace name. [SVN r37616] --- doc/design/allocation.qbk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/design/allocation.qbk b/doc/design/allocation.qbk index 398180ce..adda2ee4 100644 --- a/doc/design/allocation.qbk +++ b/doc/design/allocation.qbk @@ -28,8 +28,7 @@ Similarly, to deallocate the memory it will execute: asio_handler_deallocate(pointer, size, &h); These functions are located using argument-dependent lookup. The implementation -provides default implementations of the above functions in the `std::tr2::sys` -namespace: +provides default implementations of the above functions in the `asio` namespace: void* asio_handler_allocate(size_t, ...); void asio_handler_deallocate(void*, size_t, ...);