From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 63A6B38A8164; Thu, 15 Sep 2022 22:58:41 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 63A6B38A8164 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1663282721; bh=cpcW5s7oWrE68lLw9AHULdnoy0bZYbPFpoBprh+NDUk=; h=From:To:Subject:Date:From; b=SAHYmqCj0wrmHqc2odeZDTFzeRkIFC+eIuYkjUOFUGAcnOQmtQISzLBl9QqF2OYaA 6/vzpf67O4UaxxcPsaqUGrdZ6FtrfglH5p5BUsjaRSYBXOi1pffH7J4RMBbTs3BPUX fCq+Xpke2SQhqNF+2L60ArR7D2GQkpsFd/Kft6rM= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jonathan Wakely To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r13-2692] libstdc++: Remove unnecessary header from X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/master X-Git-Oldrev: 2b75d5f533b9d6b39f4055949aff64ed0d22dd24 X-Git-Newrev: d6ccad7641da10d9c5f1f6cfc676d5f5b9d2d126 Message-Id: <20220915225841.63A6B38A8164@sourceware.org> Date: Thu, 15 Sep 2022 22:58:41 +0000 (GMT) List-Id: https://gcc.gnu.org/g:d6ccad7641da10d9c5f1f6cfc676d5f5b9d2d126 commit r13-2692-gd6ccad7641da10d9c5f1f6cfc676d5f5b9d2d126 Author: Jonathan Wakely Date: Thu Sep 15 18:21:32 2022 +0100 libstdc++: Remove unnecessary header from Previously included so that std::copy, std::fill etc. could be used by . But that includes it explicitly now, so that it can be compiled as a header unit. There's no need to include it in , where its purpose isn't obvious. libstdc++-v3/ChangeLog: * include/std/memory: Do not include . Diff: --- libstdc++-v3/include/std/memory | 1 - 1 file changed, 1 deletion(-) diff --git a/libstdc++-v3/include/std/memory b/libstdc++-v3/include/std/memory index 481fa42a618..20a55020a36 100644 --- a/libstdc++-v3/include/std/memory +++ b/libstdc++-v3/include/std/memory @@ -60,7 +60,6 @@ * Smart pointers, etc. */ -#include #include #include #include