extend.texi (Deprecated Features): Mention that <?

* doc/extend.texi (Deprecated Features): Mention that <? and >? and
	friends are removed from G++.

From-SVN: r129186
This commit is contained in:
Geoffrey Keating 2007-10-09 22:47:27 +00:00 committed by Geoffrey Keating
parent c56abad5ea
commit 32e26ecee6
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2007-10-09 Geoffrey Keating <geoffk@apple.com>
* doc/extend.texi (Deprecated Features): Mention that <? and >? and
friends are removed from G++.
2007-10-09 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
* c-opts.c (c_common_handle_option): -Wnontemplate-friend,

View File

@ -12241,8 +12241,8 @@ future version.
The G++ minimum and maximum operators (@samp{<?} and @samp{>?}) and
their compound forms (@samp{<?=}) and @samp{>?=}) have been deprecated
and will be removed in a future version. Code using these operators
should be modified to use @code{std::min} and @code{std::max} instead.
and are now removed from G++. Code using these operators should be
modified to use @code{std::min} and @code{std::max} instead.
The named return value extension has been deprecated, and is now
removed from G++.