2016-02-13 14:02:37 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include_next <cstddef>
|
|
|
|
|
2016-02-16 10:27:52 -04:00
|
|
|
#if defined(HAVE_STD_NULLPTR_T) && !HAVE_STD_NULLPTR_T
|
2016-02-16 10:35:44 -04:00
|
|
|
|
2016-02-13 14:02:37 -04:00
|
|
|
namespace std {
|
|
|
|
typedef decltype(nullptr) nullptr_t;
|
|
|
|
}
|
2016-02-16 10:35:44 -04:00
|
|
|
|
2016-02-13 14:02:37 -04:00
|
|
|
#endif
|