Migration on gcc4.0 - notes :


1. Change of tamplate instantiation

2. The following syntax is forbidden in gcc4.0 :

          tab = new CTable[10](10,20);

   must have been changed to :

        tab = new CTable[10];
        for(int i=0;i<10;i++){
             tab[i].InitConstructor( 10, 20 );
        }

3. Notes :