From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26271 invoked by alias); 11 Mar 2003 23:06:26 -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 26238 invoked by uid 48); 11 Mar 2003 23:06:26 -0000 Date: Tue, 11 Mar 2003 23:06:00 -0000 Message-ID: <20030311230626.26237.qmail@sources.redhat.com> To: gcc-bugs@gcc.gnu.org, gcc-prs@gcc.gnu.org, jason@gcc.gnu.org, yaqb@poczta.neostrada.pl From: jason@gcc.gnu.org Reply-To: jason@gcc.gnu.org, gcc-bugs@gcc.gnu.org, gcc-prs@gcc.gnu.org, jason@gcc.gnu.org, yaqb@poczta.neostrada.pl, gcc-gnats@gcc.gnu.org Subject: Re: c++/9924: [3.2/3.3/3.4 regression] Multiple using statements for builtin functions not allowed X-SW-Source: 2003-03/txt/msg00633.txt.bz2 List-Id: Synopsis: [3.2/3.3/3.4 regression] Multiple using statements for builtin functions not allowed State-Changed-From-To: analyzed->feedback State-Changed-By: jason State-Changed-When: Tue Mar 11 23:06:26 2003 State-Changed-Why: I'm not convinced this is a bug. namespace std is reserved to the implementation. Furthermore, if you fix the declaration of llabs to namespace NS { extern "C" long long llabs(long long x); } namespace std { using NS::llabs; using NS::llabs; } the testcase compiles fine. http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=9924