Commit cc56f17c authored by Robert Bradshaw's avatar Robert Bradshaw

Add nullptr to libcpp declarations.

parent 2e32985e
cdef extern from *:
ctypedef bint bool
ctypedef void* nullptr_t
nullptr_t nullptr
from libcpp cimport bool
from libcpp cimport bool, nullptr_t, nullptr
cdef extern from "<memory>" namespace "std" nogil:
ctypedef void* nullptr_t; # Should be decltype(nullptr)
cdef cppclass unique_ptr[T]:
unique_ptr()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment