Commit 12ca46bf authored by Robert Bradshaw's avatar Robert Bradshaw

Operator bool supported now.

parent cc56f17c
......@@ -19,7 +19,7 @@ cdef extern from "<memory>" namespace "std" nogil:
T* get()
T& operator*()
#T* operator->() # Not Supported
#bool operator bool() # Not Supported
bool operator bool() # Not Supported
bool operator==(const unique_ptr&)
bool operator!=(const unique_ptr&)
......@@ -54,7 +54,7 @@ cdef extern from "<memory>" namespace "std" nogil:
#T* operator->() # Not Supported
long use_count()
bool unique()
#bool operator bool() # Not Supported
bool operator bool() # Not Supported
#bool owner_before[Y](const weak_ptr[Y]&) # Not Supported
bool owner_before[Y](const shared_ptr[Y]&)
......
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