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 974863858438 for ; Thu, 27 Apr 2023 22:25:00 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 974863858438 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=1682634300; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=JxTuMrTmUaeOtO0No49y1mSVWWUN0aYZkV8R5x8pL5o=; b=R4zOCS2K3haYTSR3Anito5i8aLMxK1MyCMi/QpxL3lBd2RdCI7ZsZcEUnvQ643luyV8h2x j9X+5COmPjneAXY1KpnaYRvNu9SLggMLKznuxkx3L0kbsRroaDP6rzOT8MTYKTtiPI1lL4 IQ8YIedduncdKDxQk/iQ2yiwAaRs2vo= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-465-5hnZfgc6O-ika4A1_qLiUg-1; Thu, 27 Apr 2023 18:24:58 -0400 X-MC-Unique: 5hnZfgc6O-ika4A1_qLiUg-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 47B3E3802AC3; Thu, 27 Apr 2023 22:24:58 +0000 (UTC) Received: from localhost (unknown [10.42.28.201]) by smtp.corp.redhat.com (Postfix) with ESMTP id 134A240C2064; Thu, 27 Apr 2023 22:24:57 +0000 (UTC) From: Jonathan Wakely To: gcc-patches@gcc.gnu.org, libstdc++@gcc.gnu.org Subject: [committed] libstdc++: Fix error in doxygen comments in Date: Thu, 27 Apr 2023 23:24:57 +0100 Message-Id: <20230427222457.1773293-1-jwakely@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.2 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,RCVD_IN_MSPIKE_H2,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 List-Id: Tested x86_64-linux. Pushed to gcc-12 and gcc-11 (not needed on gcc-13 or trunk). -- >8 -- libstdc++-v3/ChangeLog: * include/std/atomic: Add missing @endcond doxygen comment. --- libstdc++-v3/include/std/atomic | 1 + 1 file changed, 1 insertion(+) diff --git a/libstdc++-v3/include/std/atomic b/libstdc++-v3/include/std/atomic index faf7eb95594..94150c1181f 100644 --- a/libstdc++-v3/include/std/atomic +++ b/libstdc++-v3/include/std/atomic @@ -1287,6 +1287,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION using __atomic_val_t = __type_identity_t<_Tp>; template using __atomic_diff_t = typename atomic<_Tp>::difference_type; + /// @endcond // [atomics.nonmembers] Non-member functions. // Function templates generally applicable to atomic types. -- 2.40.0