mirror of https://github.com/llvm-mirror/libcxx
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Summary: This patch fixes __not_null's detection of nullptr by breaking it down into 4 cases. 1. `__not_null(Tp const&)`: Default case. Tp is not null. 2. `__not_null(Tp* __ptr);` Case for pointers to functions. 3. `__not_null(_Ret _Class::* __ptr);` Case for pointers to members. 4. `__not_null(function<Tp> const&);`: Cases for other std::functions. Reviewers: mclow.lists Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D11111 git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@245335 91177308-0d34-0410-b5e6-96231b3b80d8 |
10 years ago | |
|---|---|---|
| .. | ||
| F.pass.cpp | 10 years ago | |
| F_assign.pass.cpp | 11 years ago | |
| F_incomplete.pass.cpp | 11 years ago | |
| F_nullptr.pass.cpp | 10 years ago | |
| alloc.pass.cpp | 11 years ago | |
| alloc_F.pass.cpp | 11 years ago | |
| alloc_function.pass.cpp | 11 years ago | |
| alloc_nullptr.pass.cpp | 11 years ago | |
| alloc_rfunction.pass.cpp | 11 years ago | |
| copy.pass.cpp | 11 years ago | |
| copy_assign.pass.cpp | 11 years ago | |
| default.pass.cpp | 11 years ago | |
| nullptr_t.pass.cpp | 11 years ago | |
| nullptr_t_assign.pass.cpp | 11 years ago | |