Commit fa817f7f by Paolo Carlini Committed by Paolo Carlini

re PR c++/56067 (Removal of -Wsynth from doc didn't remove example)

2013-01-22  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/56067
	* doc/invoke.texi: Remove left over -Wsynth example.

From-SVN: r195375
parent 9a647288
2013-01-22 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/56067
* doc/invoke.texi: Remove left over -Wsynth example.
2013-01-21 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/56051
......
......@@ -2673,23 +2673,6 @@ Warn when overload resolution chooses a promotion from unsigned or
enumerated type to a signed type, over a conversion to an unsigned type of
the same size. Previous versions of G++ tried to preserve
unsignedness, but the standard mandates the current behavior.
@smallexample
struct A @{
operator int ();
A& operator = (int);
@};
main ()
@{
A a,b;
a = b;
@}
@end smallexample
@noindent
In this example, G++ synthesizes a default @samp{A& operator =
(const A&);}, while cfront uses the user-defined @samp{operator =}.
@end table
@node Objective-C and Objective-C++ Dialect Options
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment