From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 2790D385828E; Wed, 21 Sep 2022 07:45:16 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2790D385828E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1663746316; bh=euQpdmHgQKg+kQwq/T+teLlgEJxtc4UvfaDghueKlVU=; h=From:To:Subject:Date:From; b=GiF5twfVfJjmsaja1HIJAIuDcUMVkcx0Ti+aWLIsOuNv0y+4Ft342t8sGHEIg+Wa+ pnr6qjuZIMxzxR365dWO04lHiy9yi860kP5HdwqJEEyv78bzGHsp8mueZCFxrOyJ5F P/V00uv79HrYoigQV3O0pxr5ezfJECsZy99xuU0c= 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-2751] libstdc++: Qualify std::abort() in test X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/master X-Git-Oldrev: 26cb69f8b4b9fb46444d164c8edcb73ac5fb2c47 X-Git-Newrev: d784c5cfe694fe8d5620504ae45ceaebb3cc9f7c Message-Id: <20220921074516.2790D385828E@sourceware.org> Date: Wed, 21 Sep 2022 07:45:16 +0000 (GMT) List-Id: https://gcc.gnu.org/g:d784c5cfe694fe8d5620504ae45ceaebb3cc9f7c commit r13-2751-gd784c5cfe694fe8d5620504ae45ceaebb3cc9f7c Author: Jonathan Wakely Date: Wed Sep 21 00:39:14 2022 +0100 libstdc++: Qualify std::abort() in test This test includes so should use std::abort not ::abort. libstdc++-v3/ChangeLog: * testsuite/18_support/uncaught_exception/14026.cc: Qualify call to std::abort. Diff: --- libstdc++-v3/testsuite/18_support/uncaught_exception/14026.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/testsuite/18_support/uncaught_exception/14026.cc b/libstdc++-v3/testsuite/18_support/uncaught_exception/14026.cc index 22d4a90d49e..bd281b97174 100644 --- a/libstdc++-v3/testsuite/18_support/uncaught_exception/14026.cc +++ b/libstdc++-v3/testsuite/18_support/uncaught_exception/14026.cc @@ -28,7 +28,7 @@ static void no_uncaught () { if (std::uncaught_exception()) - abort(); + std::abort(); } int