From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1725) id 2896A386F00B; Tue, 18 Aug 2020 18:17:41 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2896A386F00B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1597774661; bh=TErTLJx9i91hP85WUSHZWWyNvwMo/4iO5X1FQXsJur8=; h=From:To:Subject:Date:From; b=rpRN1YMs/Djx9armn5il6tptbd8znsUm126p+n/M9SIDQmZLplPACRGNqDkEZigdZ 2mlD2Tevbogrntbje/iJOZwJAPN+vctWMuSOC3GDPo5gbzAoM3sbRKgceWjyNa5R5J ibc712L/EVxPzZf7QJTF4l+b0vgLbmGHIBUz8vnw= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: William Schmidt To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc(refs/users/wschmidt/heads/builtins3)] libstdc++: Fix tests using wrong allocator type X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/users/wschmidt/heads/builtins3 X-Git-Oldrev: cf5d0fc2d1adcd53b52c5d3f946822b687546c0b X-Git-Newrev: 357beca8bce179315bdf112c0f1df20ff5874f39 Message-Id: <20200818181741.2896A386F00B@sourceware.org> Date: Tue, 18 Aug 2020 18:17:41 +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: Tue, 18 Aug 2020 18:17:41 -0000 https://gcc.gnu.org/g:357beca8bce179315bdf112c0f1df20ff5874f39 commit 357beca8bce179315bdf112c0f1df20ff5874f39 Author: Jonathan Wakely Date: Thu Jul 30 18:41:47 2020 +0100 libstdc++: Fix tests using wrong allocator type libstdc++-v3/ChangeLog: * testsuite/23_containers/unordered_multiset/cons/noexcept_default_construct.cc: Use allocator with the correct value type. * testsuite/23_containers/unordered_set/cons/noexcept_default_construct.cc: Likewise. Diff: --- .../23_containers/unordered_multiset/cons/noexcept_default_construct.cc | 2 +- .../23_containers/unordered_set/cons/noexcept_default_construct.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libstdc++-v3/testsuite/23_containers/unordered_multiset/cons/noexcept_default_construct.cc b/libstdc++-v3/testsuite/23_containers/unordered_multiset/cons/noexcept_default_construct.cc index b7c0d802125..8511cb95421 100644 --- a/libstdc++-v3/testsuite/23_containers/unordered_multiset/cons/noexcept_default_construct.cc +++ b/libstdc++-v3/testsuite/23_containers/unordered_multiset/cons/noexcept_default_construct.cc @@ -62,7 +62,7 @@ template }; using type4 = std::unordered_multiset, std::equal_to, - not_noexcept_dflt_cons_alloc>>; + not_noexcept_dflt_cons_alloc>; static_assert(!std::is_nothrow_default_constructible::value, "not noexcept default constructible"); diff --git a/libstdc++-v3/testsuite/23_containers/unordered_set/cons/noexcept_default_construct.cc b/libstdc++-v3/testsuite/23_containers/unordered_set/cons/noexcept_default_construct.cc index d60a81ffb7c..44db4aec6cf 100644 --- a/libstdc++-v3/testsuite/23_containers/unordered_set/cons/noexcept_default_construct.cc +++ b/libstdc++-v3/testsuite/23_containers/unordered_set/cons/noexcept_default_construct.cc @@ -62,7 +62,7 @@ template }; using type4 = std::unordered_set, std::equal_to, - not_noexcept_dflt_cons_alloc>>; + not_noexcept_dflt_cons_alloc>; static_assert(!std::is_nothrow_default_constructible::value, "not noexcept default constructible");