Index: third_party/cython/src/Cython/Includes/libcpp/stack.pxd |
diff --git a/third_party/cython/src/Cython/Includes/libcpp/stack.pxd b/third_party/cython/src/Cython/Includes/libcpp/stack.pxd |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d8c4314fb0f9f4164ebb3dff14c2330a12987dac |
--- /dev/null |
+++ b/third_party/cython/src/Cython/Includes/libcpp/stack.pxd |
@@ -0,0 +1,10 @@ |
+cdef extern from "<stack>" namespace "std": |
+ cdef cppclass stack[T]: |
+ stack() nogil except + |
+ stack(stack&) nogil except + |
+ #stack(Container&) |
+ bint empty() nogil |
+ void pop() nogil |
+ void push(T&) nogil |
+ size_t size() nogil |
+ T& top() nogil |