[rand.dist.norm.f]

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@104035 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant
2010-05-18 17:32:30 +00:00
parent ed9b2aa21d
commit d8bc09b616
23 changed files with 946 additions and 55 deletions

View File

@@ -57,13 +57,13 @@ struct nullptr_t
_LIBCPP_ALWAYS_INLINE operator int __nat::*() const {return 0;}
template <class T>
template <class _Tp>
_LIBCPP_ALWAYS_INLINE
operator T* () const {return 0;}
operator _Tp* () const {return 0;}
template <class T, class U>
template <class _Tp, class _Up>
_LIBCPP_ALWAYS_INLINE
operator T U::* () const {return 0;}
operator _Tp _Up::* () const {return 0;}
friend _LIBCPP_ALWAYS_INLINE bool operator==(nullptr_t, nullptr_t) {return true;}
friend _LIBCPP_ALWAYS_INLINE bool operator!=(nullptr_t, nullptr_t) {return false;}