From: Nathan Myers Date: Thu, 3 Jul 2025 23:45:27 +0000 (-0400) Subject: libstdc++: fix bits/version.def typo X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=062f217f41d1e53c4f101caebfd9aabd3f8afe03;p=thirdparty%2Fgcc.git libstdc++: fix bits/version.def typo bits/version.def was missing a ';'. libstdc++-v3/Changelog: * include/bits/version.def: Fix typo. * include/bits/version.h: Rebuilt. --- diff --git a/libstdc++-v3/include/bits/version.def b/libstdc++-v3/include/bits/version.def index b89b287e8e8..5d5758bf203 100644 --- a/libstdc++-v3/include/bits/version.def +++ b/libstdc++-v3/include/bits/version.def @@ -2031,7 +2031,7 @@ ftms = { }; ftms = { - name = bitset // ...construct from string_view + name = bitset; // ...construct from string_view values = { v = 202306; cxxmin = 26; diff --git a/libstdc++-v3/include/bits/version.h b/libstdc++-v3/include/bits/version.h index a70a7ede68c..2b00e8419b3 100644 --- a/libstdc++-v3/include/bits/version.h +++ b/libstdc++-v3/include/bits/version.h @@ -2281,6 +2281,6 @@ # endif # endif #endif /* !defined(__cpp_lib_bitset) && defined(__glibcxx_want_bitset) */ -#undef __glibcxx_bitset +#undef __glibcxx_want_bitset #undef __glibcxx_want_all