From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1059) id 45FFC3947433; Fri, 28 Aug 2020 15:56:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 45FFC3947433 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1598630183; bh=X98Upu+bP9cq1OIR+dkGYoaDm32m20HNkY7Ozbeth8Q=; h=From:To:Subject:Date:From; b=DPy/tMbyisG2coqJS16dO8NkrNFCzVyMQZs4prL9zQb9VYnH8h9gjO4hEfXJKaw46 i4IM/Tm1h5ltnyKxFNId4fI3ZHtPJ8jADuNR6/IcUw2c3dLffymwHbWcVLVt4bLAsO LdBHlDREsAjNDxSWF8AReYsO9tDme3wksbMdKB5I= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Nathan Sidwell To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc/devel/c++-modules] libstdc++: Mention new macros in comments X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/devel/c++-modules X-Git-Oldrev: e6c76f0d3327bf00c96f5a63961c1d5ab77512db X-Git-Newrev: 1e235788bbfc41f3eec1bb665d8e4bb2c63a1982 Message-Id: <20200828155623.45FFC3947433@sourceware.org> Date: Fri, 28 Aug 2020 15:56:23 +0000 (GMT) X-BeenThere: libstdc++-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libstdc++-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Aug 2020 15:56:23 -0000 https://gcc.gnu.org/g:1e235788bbfc41f3eec1bb665d8e4bb2c63a1982 commit 1e235788bbfc41f3eec1bb665d8e4bb2c63a1982 Author: Jonathan Wakely Date: Wed Aug 19 12:42:02 2020 +0100 libstdc++: Mention new macros in comments libstdc++-v3/ChangeLog: * include/bits/c++config (_GLIBCXX_DEPRECATED_SUGGEST) (_GLIBCXX11_DEPRECATED, _GLIBCXX11_DEPRECATED_SUGGEST) (_GLIBCXX17_DEPRECATED_SUGGEST, _GLIBCXX20_DEPRECATED_SUGGEST): Add new macros to comment. Diff: --- libstdc++-v3/include/bits/c++config | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libstdc++-v3/include/bits/c++config b/libstdc++-v3/include/bits/c++config index 116faf64441..de28acea6b7 100644 --- a/libstdc++-v3/include/bits/c++config +++ b/libstdc++-v3/include/bits/c++config @@ -77,8 +77,13 @@ // Macros for deprecated attributes. // _GLIBCXX_USE_DEPRECATED // _GLIBCXX_DEPRECATED +// _GLIBCXX_DEPRECATED_SUGGEST( string-literal ) +// _GLIBCXX11_DEPRECATED +// _GLIBCXX11_DEPRECATED_SUGGEST( string-literal ) // _GLIBCXX17_DEPRECATED +// _GLIBCXX17_DEPRECATED_SUGGEST( string-literal ) // _GLIBCXX20_DEPRECATED( string-literal ) +// _GLIBCXX20_DEPRECATED_SUGGEST( string-literal ) #ifndef _GLIBCXX_USE_DEPRECATED # define _GLIBCXX_USE_DEPRECATED 1 #endif