Commit 3a6c61e9 authored by Kevin R. Thornton's avatar Kevin R. Thornton

comment out template members.

parent 08dcfd70
......@@ -7,7 +7,7 @@ cdef extern from "<memory>" namespace "std" nogil:
cdef cppclass allocator[T]:
allocator()
allocator(const allocator &)
allocator[U](const allocator[U] &)
#allocator[U](const allocator[U] &) #unique_ptr unit tests fail w/this
T * address(T &)
const T * address(const T &) const
T * allocate( size_t n ) # Not to standard. should be a second default argument
......@@ -15,7 +15,7 @@ cdef extern from "<memory>" namespace "std" nogil:
size_t max_size() const
void construct( T *, const T &) #C++98. The C++11 version is variadic AND perfect-forwarding
void destroy(T *) #C++98
void destroy[U](U *)
#void destroy[U](U *) #unique_ptr unit tests fail w/this
cdef cppclass unique_ptr[T,DELETER=*]:
......
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