We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdad103 commit ef4626bCopy full SHA for ef4626b
include/boost/container/detail/std_fwd.hpp
@@ -23,6 +23,8 @@
23
// Standard predeclarations
24
//////////////////////////////////////////////////////////////////////////////
25
26
+#include <cstddef>
27
+
28
#include <boost/move/detail/std_ns_begin.hpp>
29
BOOST_MOVE_STD_NS_BEG
30
@@ -59,4 +61,15 @@ struct pointer_traits;
59
61
BOOST_MOVE_STD_NS_END
60
62
#include <boost/move/detail/std_ns_end.hpp>
63
64
+#if defined(__cpp_aligned_new)
65
66
+//align_val_t is not usually in an inline namespace
67
+namespace std {
68
69
+enum class align_val_t : std::size_t;
70
71
+} //namespace std
72
73
+#endif
74
75
#endif //#ifndef BOOST_CONTAINER_DETAIL_STD_FWD_HPP
0 commit comments