From 5ff78759b4d6abb293a6847f9ead38f8711f286f Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 22 Mar 2002 11:26:31 +0000 Subject: [PATCH] Updated add_pointer docs. [SVN r13243] --- index.htm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.htm b/index.htm index 1d15209..8b2ffe6 100644 --- a/index.htm +++ b/index.htm @@ -682,8 +682,8 @@ transformation to the template argument T:

If "t" is an instance of T, then add_pointer<T>::type is the type returned by "&t". For example - "int", "int&", "int[2]" - and "int (&)[2]" all become "int*". + "int" and "int&" both become + "int*". 8.3.1

P