Commit 786e9747 authored by Robert Bradshaw's avatar Robert Bradshaw Committed by GitHub

Merge pull request #4710 from jjerphan/stack-pop-exception-handling

Add exception handling for `libcpp::stack::push`
parents 27dd4ee2 220e78b8
......@@ -6,6 +6,6 @@ cdef extern from "<stack>" namespace "std" nogil:
#stack(Container&)
bint empty()
void pop()
void push(T&)
void push(T&) except +
size_t size()
T& top()
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