We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fe1c7a commit b7a04d3Copy full SHA for b7a04d3
include/boost/move/adl_move_swap.hpp
@@ -40,6 +40,8 @@
40
//In GCC 4.4 stl_move.h was renamed to move.h
41
#include <bits/move.h>
42
#endif
43
+#elif defined(_LIBCPP_VERSION) && (_LIBCPP_VERSION >= 13000)
44
+ #include <__utility/swap.h> //libc++ refactored <utility> headers in smaller headers
45
#elif defined(_LIBCPP_VERSION)
46
#include <type_traits> //The initial import of libc++ defines std::swap and still there
47
#elif __cplusplus >= 201103L
0 commit comments