From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id DBBB93857700; Fri, 11 Aug 2023 15:45:20 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DBBB93857700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1691768720; bh=6JncaNA1Ct4yerz+XyGA1nWGw4O9nX9DEqNG4cHfVZU=; h=From:To:Subject:Date:In-Reply-To:References:From; b=esDZi49W7hMjGDY1TGmZJEEV8ZDDvFIH6PWoi99QwQBq4P+nuX+rN93QBClHpjk9e aJ7WxFpKjXPil/BDGDogR/zmIRHLGiyiKrN5EBpqeiUVzECVEhzwO3CFzXZu//3MBj Bsnn+guQstUjX0CDKvxomROIhQfX3+2Zk6AMC9Ps= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/110646] [14 Regression] gensupport.cc:643:18: error: 'stoi' is not a member of 'std' Date: Fri, 11 Aug 2023 15:45:19 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: build X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D110646 --- Comment #5 from CVS Commits --- The master branch has been updated by John David Anglin : https://gcc.gnu.org/g:834d1422c2e056f483542f1aff2cfc211bfcc748 commit r14-3155-g834d1422c2e056f483542f1aff2cfc211bfcc748 Author: John David Anglin Date: Fri Aug 11 15:44:37 2023 +0000 Use strtol instead of std::stoi [PR110646] Implementation of std::stoi was overlooked on hppa-hpux, so use strtol instead. 2023-08-11 John David Anglin gcc/ChangeLog: PR bootstrap/110646 * gensupport.cc(class conlist): Use strtol instead of std::stoi= .=