Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions include/boost/asio/detail/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,10 @@
# if defined(__FreeBSD__) || defined(__Fuchsia__) || defined(__wasi__) \
|| defined(__NetBSD__) || defined(__OpenBSD__)
# define BOOST_ASIO_HAS_STD_ALIGNED_ALLOC 1
# elif defined(__ANDROID__)
# if (__ANDROID_API__ >= 28)
# define BOOST_ASIO_HAS_STD_ALIGNED_ALLOC 1
# endif // (__ANDROID_API__ >= 28)
# elif defined(__linux__)
# if defined(_LIBCPP_HAS_MUSL_LIBC)
# define BOOST_ASIO_HAS_STD_ALIGNED_ALLOC 1
Expand All @@ -385,8 +389,6 @@
# define BOOST_ASIO_HAS_STD_ALIGNED_ALLOC 1
# endif // (__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 17)
# endif // !defined(_LIBCPP_HAS_MUSL_LIBC)
# elif defined(__ANDROID__) && (__ANDROID_API__ >= 28)
# define BOOST_ASIO_HAS_STD_ALIGNED_ALLOC 1
# elif defined(__APPLE__)
# if defined(__MAC_OS_X_VERSION_MIN_REQUIRED)
# if (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101500)
Expand Down