]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Add missing <bits/stl_algobase.h> include to <bitset>
authorArsen Arsenović <arsen@aarsen.me>
Thu, 22 Sep 2022 18:48:25 +0000 (20:48 +0200)
committerJonathan Wakely <jwakely@redhat.com>
Fri, 30 Sep 2022 13:43:19 +0000 (14:43 +0100)
libstdc++-v3/ChangeLog:

* include/std/bitset: Include <bits/stl_algobase.h>.

libstdc++-v3/include/std/bitset

index 1a551cf9785de1575010415704fc5dc9afbf4e9b..3fe8b18735c9671d7439c91ce93e144f943f2412 100644 (file)
@@ -46,6 +46,8 @@
 
 #include <bits/functexcept.h>   // For invalid_argument, out_of_range,
                                 // overflow_error
+#include <bits/stl_algobase.h>  // For std::fill
+
 #if _GLIBCXX_HOSTED
 # include <string>
 # include <iosfwd>