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:
Douglas Gregor 2012-06-29 18:28:41 +00:00
Родитель 193f91ba7e
Коммит e25d3df6df
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -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 */