From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id 1F0C2383DB96 for ; Tue, 21 Jun 2022 07:37:17 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 1F0C2383DB96 Received: from mail-ej1-f70.google.com (mail-ej1-f70.google.com [209.85.218.70]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-571-Jn3WhIjxOjGW0ItEzColSQ-1; Tue, 21 Jun 2022 03:37:15 -0400 X-MC-Unique: Jn3WhIjxOjGW0ItEzColSQ-1 Received: by mail-ej1-f70.google.com with SMTP id gh36-20020a1709073c2400b0070759e390fbso4373144ejc.13 for ; Tue, 21 Jun 2022 00:37:15 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=YXb2laHA5HaoTfWLyUTVuDoBGqSNFGbHh8Rl4vgq+Io=; b=DRkM3R6gq01nu7AJyH4nuiJSAYjM8n+MVEU8CPRy4/pFytX9BBBk43Z5yw4LsARom0 crAi2HdcWu1XAb0Z6gnVjeC7GYF6v3OlDCnldMd6E8Kb+ofkLow1bBZ80YLFcP731yqx n8yfq7oz7wH0JDUn4pJfjzLzLmGR1E87mshdpC5D+Kkb51N2xGkEq8bxxeryIM4ao+gV 92K2PraI/qYQ3AIPTmDxGsqds0sqLuI7jjF79kZjkBBvXs6RHsqszIxsvM9DAjNRKZDK U3Jbde4kx+B4dlydwYJ/PCoSpg1PYKDsezS+fHoqwgoyysddKMolY/Odms5j45uIlotP Cmsw== X-Gm-Message-State: AJIora/Qq9O0OYNLhz4iH+DsESg1rVw59FVVm/w/ISCi3pq8tHSoqZS/ Gq1nI5SrPq+B0NP3/UgrYdyH13LQED0mTF2RRVOtkVUaM+juwDcTnriMB8n2KnJp2h9sBYeD3cz f7XujXrkQCS+IfjM63RTHyhXJvgDHev4= X-Received: by 2002:a05:6402:3298:b0:435:8145:e6db with SMTP id f24-20020a056402329800b004358145e6dbmr10026105eda.294.1655797033965; Tue, 21 Jun 2022 00:37:13 -0700 (PDT) X-Google-Smtp-Source: AGRyM1vkgCVpQUwIDt9a6k0XmXb/06DebsoH38qFjLmV0Bf4mgo2xof6KgSK+46ugajaLTCu0bLOxty1Aa5Gegm3Zwk= X-Received: by 2002:a05:6402:3298:b0:435:8145:e6db with SMTP id f24-20020a056402329800b004358145e6dbmr10026090eda.294.1655797033767; Tue, 21 Jun 2022 00:37:13 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Jonathan Wakely Date: Tue, 21 Jun 2022 08:37:02 +0100 Message-ID: Subject: Re: [PATCH] libstdc++: testsuite: work around bitset namespace pollution To: Alexandre Oliva Cc: gcc Patches , "libstdc++" X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-7.6 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_LOW, SPF_HELO_NONE, SPF_NONE, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: libstdc++@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++ mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Jun 2022 07:37:18 -0000 On Tue, 21 Jun 2022 at 06:32, Alexandre Oliva via Libstdc++ wrote: > > > rtems6 declares a global struct bitset in a header file included > indirectly by sys/types.h, that ambiguates the unqualified references > to bitset after "using namespace std" in the testsuite. > > Work around the namespace pollution with using declarations of > std::bitset. > > Regstrapped on x86_64-linux-gnu, also tested with a cross to > aarch64-rtems6.0. Ok to install? OK, thanks.