Skip to content

Commit

Permalink
Add missing includes to xdynamic_bitset.hpp
Browse files Browse the repository at this point in the history
#include <initializer_list> for std::initializer_list
#include <memory>  for std::allocator
#include <algorithm> for std::copy
  • Loading branch information
laramiel authored Jan 10, 2024
1 parent a7c1c54 commit a9a241c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/xtl/xdynamic_bitset.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
#include <climits>
#include <type_traits>
#include <vector>
#include <initializer_list>
#include <iterator>
#include <memory>
#include <algorithm>

#include "xclosure.hpp"
#include "xspan.hpp"
Expand Down

0 comments on commit a9a241c

Please sign in to comment.