From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 63D2538AA24D; Fri, 9 Dec 2022 00:35:40 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 63D2538AA24D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1670546140; bh=5pqi6pIbkNsPQOLujVWEGKt38N258waIOaj+wwMKTSc=; h=From:To:Subject:Date:From; b=giy9+GoLCir4Xetyl7VidlAzf1YUZ0+p1BuaJRlMUtC9JA65SCu0BxWPYbEcVjbRt bGTnnYid3L90hpQ5MFaFUS2kkNEPdVC5RYLi66BVY0P55EXoWtqnlWZ5t7V0+hl4Qr zPysHx21g9gQz0OWiw64dK0dwzFM6oxMKgUGd7o8= 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-4573] libstdc++: Fix some -Wunused warnings in tests X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/master X-Git-Oldrev: 646e979c43b8c84f0f70ea8f1709dfa2909726cd X-Git-Newrev: f76d7943bb310f8ffaa553badb9c8244d6f5beee Message-Id: <20221209003540.63D2538AA24D@sourceware.org> Date: Fri, 9 Dec 2022 00:35:40 +0000 (GMT) List-Id: https://gcc.gnu.org/g:f76d7943bb310f8ffaa553badb9c8244d6f5beee commit r13-4573-gf76d7943bb310f8ffaa553badb9c8244d6f5beee Author: Jonathan Wakely Date: Thu Dec 8 11:39:20 2022 +0000 libstdc++: Fix some -Wunused warnings in tests libstdc++-v3/ChangeLog: * include/ext/pb_ds/detail/type_utils.hpp (PB_DS_STATIC_ASSERT): Add unused attribute to avoid -Wunused-local-typedef warnings. * testsuite/17_intro/tag_type_explicit_ctor.cc: Add pragma to ignore -Wunused-variable warnings Diff: --- libstdc++-v3/include/ext/pb_ds/detail/type_utils.hpp | 3 ++- libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/libstdc++-v3/include/ext/pb_ds/detail/type_utils.hpp b/libstdc++-v3/include/ext/pb_ds/detail/type_utils.hpp index 52d05392975..c3db6c93ea6 100644 --- a/libstdc++-v3/include/ext/pb_ds/detail/type_utils.hpp +++ b/libstdc++-v3/include/ext/pb_ds/detail/type_utils.hpp @@ -152,7 +152,8 @@ namespace __gnu_pbds }; #define PB_DS_STATIC_ASSERT(UNIQUE, E) \ - typedef __gnu_pbds::detail::__static_assert_dumclass)> UNIQUE##__static_assert_type + typedef __gnu_pbds::detail::__static_assert_dumclass)> \ + UNIQUE##__static_assert_type __attribute__((__unused__)) #endif diff --git a/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc b/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc index 410142d3974..fead30f63c3 100644 --- a/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc +++ b/libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc @@ -34,6 +34,8 @@ void f5(std::try_to_lock_t); void f6(std::adopt_lock_t); #endif +#pragma GCC diagnostic ignored "-Wunused-variable" + int main() { std::nothrow_t v1;