forked from boostorg/config
Clang using VC++ RTL currently does not support char16_t or char32_t
[SVN r86675]
This commit is contained in:
@ -68,7 +68,10 @@
|
|||||||
# define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
|
# define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !(defined(__GXX_EXPERIMENTAL_CXX0X__) || __cplusplus >= 201103L)
|
//
|
||||||
|
// Currently clang on Windows using VC++ RTL does not support C++11's char16_t or char32_t
|
||||||
|
//
|
||||||
|
#if defined(_MSC_VER) || !(defined(__GXX_EXPERIMENTAL_CXX0X__) || __cplusplus >= 201103L)
|
||||||
# define BOOST_NO_CXX11_CHAR16_T
|
# define BOOST_NO_CXX11_CHAR16_T
|
||||||
# define BOOST_NO_CXX11_CHAR32_T
|
# define BOOST_NO_CXX11_CHAR32_T
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user