From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21806 invoked by alias); 23 Oct 2002 22:26:01 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 21779 invoked by uid 71); 23 Oct 2002 22:26:01 -0000 Resent-Date: 23 Oct 2002 22:26:01 -0000 Resent-Message-ID: <20021023222601.21778.qmail@sources.redhat.com> Resent-From: gcc-gnats@gcc.gnu.org (GNATS Filer) Resent-Cc: gcc-prs@gcc.gnu.org, gcc-bugs@gcc.gnu.org Resent-Reply-To: gcc-gnats@gcc.gnu.org, dv@vollmann.ch Received: (qmail 17528 invoked from network); 23 Oct 2002 22:17:14 -0000 Received: from unknown (HELO mustang.centralnet.ch) (193.135.146.12) by sources.redhat.com with SMTP; 23 Oct 2002 22:17:14 -0000 Received: from vollmann.ch (luz48.centralnet.ch [193.246.195.48]) by mustang.centralnet.ch (8.9.3/8.9.3) with ESMTP id AAA4384497 for ; Thu, 24 Oct 2002 00:17:09 +0200 (MES) Received: (from dv@localhost) by vollmann.ch (8.9.3/8.9.3) id AAA32025; Thu, 24 Oct 2002 00:15:54 +0200 Message-Id: <200210232215.AAA32025@vollmann.ch> Date: Wed, 23 Oct 2002 15:26:00 -0000 From: dv@vollmann.ch To: gcc-gnats@gcc.gnu.org X-Send-Pr-Version: 3.113 Subject: c++/8327: g++ doesn't know value of static const member X-SW-Source: 2002-10/txt/msg00907.txt.bz2 List-Id: >Number: 8327 >Category: c++ >Synopsis: In definition of template static member value of static const member isn't known >Confidential: no >Severity: serious >Priority: low >Responsible: unassigned >State: open >Class: rejects-legal >Submitter-Id: net >Arrival-Date: Wed Oct 23 15:26:00 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Detlef Vollmann >Release: 3.3 20021020 (experimental) >Organization: vollmann engineering gmbh >Environment: System: Linux dwarf 2.4.3-XFS #7 Mon Aug 6 18:43:20 CEST 2001 i686 unknown Architecture: i686 host: i686-pc-linux-gnu build: i686-pc-linux-gnu target: i686-pc-linux-gnu configured with: /pdsrc/gcc/cvs/gcc/configure --program-suffix=-test --prefix=/local/gcc-test --enable-shared --enable-threads=posix --enable-version-specific-runtime-libs --enable-languages=c,c++ >Description: If a template contains a static array, and the dimension of the array is defined by a const static member with initializer, and the dimension is used in the definition of the static array, g++ gives an error "conflicting types"; which probably means that the value of the dimension is lost. >How-To-Repeat: template class X { static const int a = 5; static T b[a]; }; template T X::b[X::a]; >Fix: The dimension can be left out in the definition of the static member. >Release-Note: >Audit-Trail: >Unformatted: