From 699c8113cf98c0070b2b0c8febd937faf44e1ab4 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Mon, 24 Mar 2014 16:57:47 +0100 Subject: remove clutter from 'nogil' declarations in libcpp --- Cython/Includes/libcpp/utility.pxd | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'Cython/Includes/libcpp/utility.pxd') 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 "" namespace "std": +cdef extern from "" 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&) -- cgit v1.2.1