From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 48649 invoked by alias); 12 Nov 2015 10:09:55 -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 47582 invoked by uid 89); 12 Nov 2015 10:09:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 12 Nov 2015 10:09:53 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id B1A07935F8; Thu, 12 Nov 2015 10:09:52 +0000 (UTC) Received: from localhost (ovpn-116-102.ams2.redhat.com [10.36.116.102]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id tACA9pxb012362; Thu, 12 Nov 2015 05:09:52 -0500 Date: Thu, 12 Nov 2015 10:09:00 -0000 From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: [patch] Fix doxygen @file comment in libstdc++ header Message-ID: <20151112100951.GW2937@redhat.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="pe+tqlI1iYzVj1X/" Content-Disposition: inline X-Clacks-Overhead: GNU Terry Pratchett User-Agent: Mutt/1.5.24 (2015-08-30) X-SW-Source: 2015-11/txt/msg01476.txt.bz2 --pe+tqlI1iYzVj1X/ Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline Content-length: 120 A trivial patch, I didn't edit the @file when I moved this file to the new bits sub-directory. Committed as obvious. --pe+tqlI1iYzVj1X/ Content-Type: text/x-patch; charset=us-ascii Content-Disposition: attachment; filename="patch.txt" Content-length: 838 commit 1229ad46adf4d9a74b3da4e354120ebaa1be8eb1 Author: Jonathan Wakely Date: Thu Nov 12 10:07:08 2015 +0000 * include/experimental/bits/string_view.tcc: Fix doxygen @file. diff --git a/libstdc++-v3/include/experimental/bits/string_view.tcc b/libstdc++-v3/include/experimental/bits/string_view.tcc index 75a34f9..0eb4f70 100644 --- a/libstdc++-v3/include/experimental/bits/string_view.tcc +++ b/libstdc++-v3/include/experimental/bits/string_view.tcc @@ -22,7 +22,7 @@ // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see // . -/** @file experimental/string_view.tcc +/** @file experimental/bits/string_view.tcc * This is an internal header file, included by other library headers. * Do not attempt to use it directly. @headername{string_view} */ --pe+tqlI1iYzVj1X/--