This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
http://gcc.gnu.org/gcc-3.4/changes.html
- From: "Johan Bergman \(KI/EAB\)" <johan dot bergman at ericsson dot com>
- To: <gcc at gnu dot org>
- Date: Mon, 28 Feb 2005 21:53:35 +0100
- Subject: http://gcc.gnu.org/gcc-3.4/changes.html
Hi,
I propose the following change to http://gcc.gnu.org/gcc-3.4/changes.html.
(The "alternative solution" was proposed by myself a while ago,
but now I have realized that it is not backwards compatible.)
------------------------------------------------------------------
449c449,450
< <p>As an alternative solution, you may use <code>using</code>
---
> <p>As an alternative solution (unfortunately not backwards
> compatible with GCC 3.3), you may use <code>using</code>
------------------------------------------------------------------
You might also want to align the indentation in a couple of places
with the rest of the page:
------------------------------------------------------------------
432,435c432,435
< m = 0; // error
< f (); // error
< n = 0; // ::n is modified
< g (); // ::g is called
---
> m = 0; // error
> f (); // error
> n = 0; // ::n is modified
> g (); // ::g is called
459,462c460,463
< m = 0;
< f ();
< n = 0;
< g ();
---
> m = 0;
> f ();
> n = 0;
> g ();
------------------------------------------------------------------
BR,
Johan