This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
C++ extension not supported in 3.4.0 20040121 (prerelease)
- From: Shelly Adhikari <shelly at interrasystems dot com>
- To: gcc at gcc dot gnu dot org
- Date: Fri, 23 Jan 2004 15:46:12 -0800
- Subject: C++ extension not supported in 3.4.0 20040121 (prerelease)
Hello,
This following extension works in gcc 3.3.2 but not in 3.4.0 20040121
(prerelease). If it is intentional, shouldn't this be reported in
http://gcc.gnu.org/gcc-3.4/changes.html.
char** abc = new (char*) [64]; // not accepted by 3.4.0 prerelease but
accepted by 3.3.2
The following works ...
char** abc = new char* [64]; // accepted by both.
Cheers,
Shelly