From b40bb34c3f5e9942d083efdee393c6e2d25e5981 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Fri, 17 Apr 2026 21:53:16 +0100 Subject: [PATCH] libstdc++: Fix accidentally committed change to spelling of macro This change to the macro was done intentionally to quickly test that the changes in r16-8720-g209550a04e143e did not break the code in the #else branch, but it was not supposed to be committed! libstdc++-v3/ChangeLog: * include/bits/print.h: Fix spelling of macro. --- libstdc++-v3/include/bits/print.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/include/bits/print.h b/libstdc++-v3/include/bits/print.h index ab3ff999612..17567f2f554 100644 --- a/libstdc++-v3/include/bits/print.h +++ b/libstdc++-v3/include/bits/print.h @@ -58,7 +58,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION namespace __format { -#if _GLIBCXX_USE_STDIO_LOCKING && _GLIBCXX_USE_GLBC_STDIO_EXT +#if _GLIBCXX_USE_STDIO_LOCKING && _GLIBCXX_USE_GLIBC_STDIO_EXT // These are defined in but we don't want to include that. extern "C" int __fwritable(FILE*) noexcept; extern "C" int __flbf(FILE*) noexcept;