From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Burchard To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org Subject: Re: c++/3433 Date: Thu, 28 Jun 2001 17:56:00 -0000 Message-id: <20010629005601.3354.qmail@sourceware.cygnus.com> X-SW-Source: 2001-06/msg01165.html List-Id: The following reply was made to PR c++/3433; it has been noted by GNATS. From: Paul Burchard To: gcc-gnats@gcc.gnu.org, gcc-prs@gcc.gnu.org, gcc-bugs@gcc.gnu.org, nobody@gcc.gnu.org, burchard@pobox.com Cc: Subject: Re: c++/3433 Date: Thu, 28 Jun 2001 17:47:14 -0700 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view&pr=3433&database=gcc Actually, the tree-check failure in my bug report c++/3433 appears to be due to the array size expression (1), not the the array initializer. The error does not occur if the size is left implicit, as in: template struct tensor1 { static const unsigned int dimension[] = { Dimension }; }; PB