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.133.124]) by sourceware.org (Postfix) with ESMTPS id 74F2E385C412 for ; Fri, 30 Sep 2022 13:46:25 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 74F2E385C412 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1664545585; 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; bh=SDO6eJgXQJjwN+3XE9vZFpCZHIsFIn04SVHKLc8+VFM=; b=W8QZL2TPS7FseOJFDVHDWGSljGnE29IHxwWF73cd/4YbZdytc3n2qPjDP5iUC1ht84b5jl 6k//zl4fE3V/eSSRv5goJoh0mnNA/mEneA6b4S8GhEFI31OJ7P2EunmMqnfqEaMktPrlK4 FYVUlU4ll1frTd7GyAxNHTzROMo+sug= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-584-uBVkZPn7NEus2KklrjYNCw-1; Fri, 30 Sep 2022 09:46:22 -0400 X-MC-Unique: uBVkZPn7NEus2KklrjYNCw-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id D13D5101A52A; Fri, 30 Sep 2022 13:46:21 +0000 (UTC) Received: from localhost (unknown [10.33.36.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id 98DDD2087440; Fri, 30 Sep 2022 13:46:21 +0000 (UTC) From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Cc: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= Subject: [committed] libstdc++: Add missing include to Date: Fri, 30 Sep 2022 14:46:20 +0100 Message-Id: <20220930134620.106589-1-jwakely@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.4 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.0 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=unavailable autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: From: Arsen Arsenović Tested x86_64-linux. Pushed to trunk. -- >8 -- libstdc++-v3/ChangeLog: * include/std/bitset: Include . --- libstdc++-v3/include/std/bitset | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libstdc++-v3/include/std/bitset b/libstdc++-v3/include/std/bitset index 1a551cf9785..3fe8b18735c 100644 --- a/libstdc++-v3/include/std/bitset +++ b/libstdc++-v3/include/std/bitset @@ -46,6 +46,8 @@ #include // For invalid_argument, out_of_range, // overflow_error +#include // For std::fill + #if _GLIBCXX_HOSTED # include # include -- 2.37.3