зеркало из https://github.com/microsoft/clang-1.git
std::nullptr_t support in MS headers, from João Matos.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159448 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
193f91ba7e
Коммит
e25d3df6df
|
@ -52,6 +52,13 @@ typedef __WCHAR_TYPE__ wchar_t;
|
|||
# define NULL ((void*)0)
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
#if defined(_MSC_EXTENSIONS) && defined(_NATIVE_NULLPTR_SUPPORTED)
|
||||
namespace std { typedef decltype(nullptr) nullptr_t; }
|
||||
using ::std::nullptr_t;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#define offsetof(t, d) __builtin_offsetof(t, d)
|
||||
|
||||
#endif /* __STDDEF_H */
|
||||
|
|
Загрузка…
Ссылка в новой задаче