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