From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7393 invoked by alias); 23 Oct 2004 19:30:11 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 7377 invoked from network); 23 Oct 2004 19:30:11 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 23 Oct 2004 19:30:11 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id i9NJUB3G028134; Sat, 23 Oct 2004 15:30:11 -0400 Received: from potter.sfbay.redhat.com (potter.sfbay.redhat.com [172.16.27.15]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i9NJUAr29328; Sat, 23 Oct 2004 15:30:10 -0400 Received: from roscoe.artheist.org (vpn50-26.rdu.redhat.com [172.16.50.26]) by potter.sfbay.redhat.com (8.12.8/8.12.8) with SMTP id i9NJU6vn024726; Sat, 23 Oct 2004 15:30:08 -0400 Date: Sat, 23 Oct 2004 19:58:00 -0000 From: Benjamin Kosnik To: Andrew Pinski Cc: gcc-patches@gcc.gnu.org, libstdc++@gcc.gnu.org Subject: Re: [PATCH] Fix some of the mt_allocator testcases on darwin Message-Id: <20041023122920.030b7214.bkoz@redhat.com> In-Reply-To: References: Organization: Red Hat / Chicago Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-SW-Source: 2004-10/txt/msg01992.txt.bz2 >The problem is that the testcases use *_t as typedef which is reserved >by >POSIX and one of them conflicts with Darwin's headers, policy_t. I >changed >all the *_t to be named *_type which is consistent with other libstdc++ >tests and other mt_allocator tests. This is fine, thanks.