summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDobatymo <Dobatymo@users.noreply.github.com>2021-10-15 16:31:32 +0800
committerGitHub <noreply@github.com>2021-10-15 10:31:32 +0200
commitc129b15e8ee249a33ca9a5dc82a3defe509ad5c0 (patch)
tree3917bfe517d527dfdce9d6161c50cb10dbd51724
parent72c18e73679fc3b74d2acd037b4de2cbfff25257 (diff)
downloadcython-c129b15e8ee249a33ca9a5dc82a3defe509ad5c0.tar.gz
Fix wrong type in unordered_multiset::swap() (GH-4408)
-rw-r--r--Cython/Includes/libcpp/unordered_set.pxd2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Includes/libcpp/unordered_set.pxd b/Cython/Includes/libcpp/unordered_set.pxd
index 2eba3a1c0..0b9931925 100644
--- a/Cython/Includes/libcpp/unordered_set.pxd
+++ b/Cython/Includes/libcpp/unordered_set.pxd
@@ -106,7 +106,7 @@ cdef extern from "<unordered_set>" namespace "std" nogil:
reverse_iterator rend()
const_reverse_iterator const_rend "rend"()
size_t size()
- void swap(unordered_set&)
+ void swap(unordered_multiset&)
#value_compare value_comp()
void max_load_factor(float)
float max_load_factor()