From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 52174 invoked by alias); 13 Feb 2020 12:20:38 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 52166 invoked by uid 89); 13 Feb 2020 12:20:38 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-5.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 spammy=HTo:U*ppalka X-HELO: us-smtp-1.mimecast.com Received: from us-smtp-delivery-1.mimecast.com (HELO us-smtp-1.mimecast.com) (205.139.110.120) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 13 Feb 2020 12:20:36 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581596435; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=F80IGdn0SCujOiWmPVufa/f/tRimDyEjtrRz51ntv2s=; b=Ujt1N4JYIrzUISekLhRqXP3787bg+d4c7MWksGQ7xgT4A4y35L4ykL46KF+hkmtjW18Nkq 86QDpL1Y2G9WjLtxWhbAhQ4bbyO0Y88rkkrGdQFE64538AWl/dAMvqyOQdDlna21LiZj+F pnFKebKzrB9YIXTyAwFiOXkt0npaJwE= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-230-ndUiwkqpOHOdtKPWvALGVA-1; Thu, 13 Feb 2020 07:20:33 -0500 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 13367107ACCA; Thu, 13 Feb 2020 12:20:32 +0000 (UTC) Received: from localhost (ovpn-204-133.brq.redhat.com [10.40.204.133]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8592319C70; Thu, 13 Feb 2020 12:20:31 +0000 (UTC) Date: Thu, 13 Feb 2020 12:20:00 -0000 From: Jonathan Wakely To: Patrick Palka Cc: gcc-patches@gcc.gnu.org, libstdc++@gcc.gnu.org Subject: Re: [PATCH 1/2] libstdc++: Move some ranges algos to a new header Message-ID: <20200213122030.GE9441@redhat.com> References: <20200212204107.4124217-1-ppalka@redhat.com> MIME-Version: 1.0 In-Reply-To: <20200212204107.4124217-1-ppalka@redhat.com> X-Clacks-Overhead: GNU Terry Pratchett X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-SW-Source: 2020-02/txt/msg00785.txt.bz2 On 12/02/20 15:41 -0500, Patrick Palka wrote: >This roughly mirrors the existing split between and >. The ranges [specialized.algorithms] will use this = new >header to avoid including all of of . > >libstdc++-v3/ChangeLog: > > * include/Makefile.am: Add bits/ranges_algobase.h > * include/Makefile.in: Regenerate. > * bits/ranges_algo.h: Include and refactor > existing #includes. > (__detail::__is_normal_iterator, __detail::is_reverse_iterator, > __detail::__is_move_iterator, copy_result, move_result, > __equal, equal, copy_result, move_result, move_backward_result, > copy_backward_result, __copy_or_move_backward, __copy_or_move, copy, > move, copy_backward, move_backward, copy_n_result, copy_n, fill_n, > fill): Split out into ... > * bits/range_algobase.h: ... this new header. OK for master.