blob: efe0f61c75527b33824e799b7290760c4a5cf0f7 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===--------------------------- cstddef ----------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_CSTDDEF
12#define _LIBCPP_CSTDDEF
13
14/*
15 cstddef synopsis
16
17Macros:
18
19 offsetof(type,member-designator)
20 NULL
21
22namespace std
23{
24
25Types:
26
27 ptrdiff_t
28 size_t
29 max_align_t
30 nullptr_t
31
32} // std
33
34*/
35
36#include <__config>
Howard Hinnantadff4892010-05-24 17:49:41 +000037#define __need_ptrdiff_t
38#define __need_size_t
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000039#include <stddef.h>
40
41#pragma GCC system_header
42
43_LIBCPP_BEGIN_NAMESPACE_STD
44
45using ::ptrdiff_t;
46using ::size_t;
47
48typedef long double max_align_t;
49
50#ifdef _LIBCPP_HAS_NO_NULLPTR
51
52struct nullptr_t
53{
54 void* _;
55
56 struct __nat {int __for_bool_;};
57
58 _LIBCPP_ALWAYS_INLINE nullptr_t(int __nat::*) {}
59
60 _LIBCPP_ALWAYS_INLINE operator int __nat::*() const {return 0;}
61
Howard Hinnantd8bc09b2010-05-18 17:32:30 +000062 template <class _Tp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000063 _LIBCPP_ALWAYS_INLINE
Howard Hinnantd8bc09b2010-05-18 17:32:30 +000064 operator _Tp* () const {return 0;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000065
Howard Hinnantd8bc09b2010-05-18 17:32:30 +000066 template <class _Tp, class _Up>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000067 _LIBCPP_ALWAYS_INLINE
Howard Hinnantd8bc09b2010-05-18 17:32:30 +000068 operator _Tp _Up::* () const {return 0;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000069
70 friend _LIBCPP_ALWAYS_INLINE bool operator==(nullptr_t, nullptr_t) {return true;}
71 friend _LIBCPP_ALWAYS_INLINE bool operator!=(nullptr_t, nullptr_t) {return false;}
72 friend _LIBCPP_ALWAYS_INLINE bool operator<(nullptr_t, nullptr_t) {return false;}
73 friend _LIBCPP_ALWAYS_INLINE bool operator<=(nullptr_t, nullptr_t) {return true;}
74 friend _LIBCPP_ALWAYS_INLINE bool operator>(nullptr_t, nullptr_t) {return false;}
75 friend _LIBCPP_ALWAYS_INLINE bool operator>=(nullptr_t, nullptr_t) {return true;}
76};
77
78inline _LIBCPP_ALWAYS_INLINE nullptr_t __get_nullptr_t() {return nullptr_t(0);}
79
80#define nullptr _STD::__get_nullptr_t()
81
82#else
83
84typedef decltype(nullptr) nullptr_t;
85
86#endif
87
88_LIBCPP_END_NAMESPACE_STD
89
90#endif // _LIBCPP_CSTDDEF