aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorAlexandre Oliva <oliva@adacore.com>2023-11-14 22:15:29 -0300
committerAlexandre Oliva <oliva@gnu.org>2023-11-14 22:15:29 -0300
commita1ad62ee2fd070854d2137f35614af639c1a94f2 (patch)
tree4ee7d2456555682a9a80c4750d69079bbebd3521 /libstdc++-v3
parent2220263f0e032a6af3cea44a17735833baa5fd93 (diff)
downloadgcc-a1ad62ee2fd070854d2137f35614af639c1a94f2.zip
gcc-a1ad62ee2fd070854d2137f35614af639c1a94f2.tar.gz
gcc-a1ad62ee2fd070854d2137f35614af639c1a94f2.tar.bz2
libstdc++: bvector: undef always_inline macro
It's customary to undefine temporary internal macros at the end of the header that defines them, even such widely-usable ones as _GLIBCXX_ALWAYS_INLINE, so do so in the header where the define was recently introduced. for libstdc++-v3/ChangeLog * include/bits/stl_bvector.h (_GLIBCXX_ALWAYS_INLINE): Undef.
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/include/bits/stl_bvector.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libstdc++-v3/include/bits/stl_bvector.h b/libstdc++-v3/include/bits/stl_bvector.h
index 64f04c1..8b97b61 100644
--- a/libstdc++-v3/include/bits/stl_bvector.h
+++ b/libstdc++-v3/include/bits/stl_bvector.h
@@ -1630,4 +1630,6 @@ _GLIBCXX_END_NAMESPACE_CONTAINER
_GLIBCXX_END_NAMESPACE_VERSION
} // namespace std
+#undef _GLIBCXX_ALWAYS_INLINE
+
#endif