summaryrefslogtreecommitdiff
path: root/Cython/Includes/libcpp/utility.pxd
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2014-03-24 16:57:47 +0100
committerStefan Behnel <stefan_ml@behnel.de>2014-03-24 16:57:47 +0100
commit699c8113cf98c0070b2b0c8febd937faf44e1ab4 (patch)
treef53b78042affe1d5a6e09de1431f20ff20d29a98 /Cython/Includes/libcpp/utility.pxd
parentddad9533e8072e7e683eb2dd14c694b2e8e62e62 (diff)
downloadcython-699c8113cf98c0070b2b0c8febd937faf44e1ab4.tar.gz
remove clutter from 'nogil' declarations in libcpp
Diffstat (limited to 'Cython/Includes/libcpp/utility.pxd')
-rw-r--r--Cython/Includes/libcpp/utility.pxd20
1 files changed, 10 insertions, 10 deletions
diff --git a/Cython/Includes/libcpp/utility.pxd b/Cython/Includes/libcpp/utility.pxd
index d3823930e..532fc9af6 100644
--- a/Cython/Includes/libcpp/utility.pxd
+++ b/Cython/Includes/libcpp/utility.pxd
@@ -1,13 +1,13 @@
-cdef extern from "<utility>" namespace "std":
+cdef extern from "<utility>" namespace "std" nogil:
cdef cppclass pair[T, U]:
T first
U second
- pair() nogil except +
- pair(pair&) nogil except +
- pair(T&, U&) nogil except +
- bint operator==(pair&, pair&) nogil
- bint operator!=(pair&, pair&) nogil
- bint operator<(pair&, pair&) nogil
- bint operator>(pair&, pair&) nogil
- bint operator<=(pair&, pair&) nogil
- bint operator>=(pair&, pair&) nogil
+ pair() except +
+ pair(pair&) except +
+ pair(T&, U&) except +
+ bint operator==(pair&, pair&)
+ bint operator!=(pair&, pair&)
+ bint operator<(pair&, pair&)
+ bint operator>(pair&, pair&)
+ bint operator<=(pair&, pair&)
+ bint operator>=(pair&, pair&)