Add comment to remove_pointer docs.

Fixes #3771.

[SVN r59474]
This commit is contained in:
John Maddock
2010-02-04 17:22:33 +00:00
parent 466c4a68fc
commit eea6aa420e
2 changed files with 5 additions and 2 deletions

View File

@@ -34,7 +34,9 @@
</pre>
<p>
<span class="bold"><strong>type:</strong></span> The same type as <code class="computeroutput"><span class="identifier">T</span></code>,
but with any pointer modifier removed.
but with any pointer modifier removed. Note that pointers to members are
left unchanged: removing the pointer decoration would result in an invalid
type.
</p>
<p>
<span class="bold"><strong>C++ Standard Reference:</strong></span> 8.3.1.

View File

@@ -13,7 +13,8 @@
typedef __below type;
};
__type The same type as `T`, but with any pointer modifier removed.
__type The same type as `T`, but with any pointer modifier removed. Note that pointers to members are left unchanged:
removing the pointer decoration would result in an invalid type.
__std_ref 8.3.1.