From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id DB59E383E71E; Tue, 5 Dec 2023 16:49:41 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DB59E383E71E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1701794981; bh=A4YfR4qTY6M1xVZlsDFnS0PkEJpKn5tBwUqkBlfzBG0=; h=From:To:Subject:Date:In-Reply-To:References:From; b=iIgMF43qe9OiXc9STCQ8JcKqJkDsUrS6/iMp6/opqzm+tD9QObRJWq0uVNqaBJIgx b2p3NJSYN9MnSobMF0O+qSSzU1pgJlCBcARier4ZAJxv+Qw0shX4L9M+3dWbej9U/s 9Mmb7PlRx+zVsm5xvsq99ceNfyiYcsbFcQ9dz6dE= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/112832] [std::format] Broken non-SFINAE-friendly `set_debug_format()` for `const char *` formatter Date: Tue, 05 Dec 2023 16:49:41 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 13.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: redi at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.3 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=3D112832 --- Comment #2 from GCC Commits --- The master branch has been updated by Jonathan Wakely : https://gcc.gnu.org/g:3cd73543a1122d3c81409e3e9a26c3e94c3d324f commit r14-6189-g3cd73543a1122d3c81409e3e9a26c3e94c3d324f Author: Jonathan Wakely Date: Mon Dec 4 12:03:28 2023 +0000 libstdc++: Disable std::formatter::set_debug_format [PR112832] All set_debug_format member functions should be guarded by the __cpp_lib_formatting_ranges macro (which is not defined yet). libstdc++-v3/ChangeLog: PR libstdc++/112832 * include/std/format (formatter::set_debug_format): Ensure this member is defined conditionally for all specializations. * testsuite/std/format/formatter/112832.cc: New test.=