Skip to content

Commit 5ad7df6

Browse files
authored
Don't use FTMs to determine implementation choice
1 parent bef2141 commit 5ad7df6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boost/align/aligned_alloc.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Distributed under the Boost Software License, Version 1.0.
3838
#include <boost/align/detail/aligned_alloc_posix.hpp>
3939
#elif defined(sun) || defined(__sun)
4040
#include <boost/align/detail/aligned_alloc_sunos.hpp>
41-
#elif (_POSIX_C_SOURCE >= 200112L) || (_XOPEN_SOURCE >= 600)
41+
#elif defined(_POSIX_VERSION)
4242
#include <boost/align/detail/aligned_alloc_posix.hpp>
4343
#else
4444
#include <boost/align/detail/aligned_alloc.hpp>

0 commit comments

Comments
 (0)