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
4 changes: 2 additions & 2 deletions include/asio/detail/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@
# if (__cplusplus >= 201703)
# if defined(__clang__)
# if defined(ASIO_HAS_CLANG_LIBCXX)
# if (_LIBCPP_STD_VER > 14) && defined(_LIBCPP_HAS_ALIGNED_ALLOC) \
# if (_LIBCPP_STD_VER > 14) && !defined(_LIBCPP_HAS_NO_ALIGNED_ALLOCATION) \
&& !defined(_LIBCPP_MSVCRT) && !defined(__MINGW32__)
# if defined(__ANDROID__) && (__ANDROID_API__ >= 28)
# define ASIO_HAS_STD_ALIGNED_ALLOC 1
Expand All @@ -423,7 +423,7 @@
# else // defined(__APPLE__)
# define ASIO_HAS_STD_ALIGNED_ALLOC 1
# endif // defined(__APPLE__)
# endif // (_LIBCPP_STD_VER > 14) && defined(_LIBCPP_HAS_ALIGNED_ALLOC)
# endif // (_LIBCPP_STD_VER > 14) && !defined(_LIBCPP_HAS_NO_ALIGNED_ALLOCATION)
// && !defined(_LIBCPP_MSVCRT) && !defined(__MINGW32__)
# elif defined(_GLIBCXX_HAVE_ALIGNED_ALLOC)
# define ASIO_HAS_STD_ALIGNED_ALLOC 1
Expand Down