Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
4e5f0365
Commit
4e5f0365
authored
Apr 14, 2015
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix unordered_map declarations.
parent
897d088d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Cython/Includes/libcpp/unordered_map.pxd
Cython/Includes/libcpp/unordered_map.pxd
+3
-3
No files found.
Cython/Includes/libcpp/unordered_map.pxd
View file @
4e5f0365
...
...
@@ -43,13 +43,13 @@ cdef extern from "<unordered_map>" namespace "std" nogil:
void
erase
(
iterator
,
iterator
)
size_t
erase
(
T
&
)
iterator
find
(
T
&
)
const_iterator
const_find
"find"
(
key_type
&
)
const_iterator
const_find
"find"
(
T
&
)
pair
[
iterator
,
bint
]
insert
(
pair
[
T
,
U
])
# XXX pair[T,U]&
iterator
insert
(
iterator
,
pair
[
T
,
U
])
# XXX pair[T,U]&
#void insert(input_iterator, input_iterator)
#key_compare key_comp()
iterator
lower_bound
(
T
&
)
const_iterator
const_lower_bound
"lower_bound"
(
key_type
&
)
const_iterator
const_lower_bound
"lower_bound"
(
T
&
)
size_t
max_size
()
reverse_iterator
rbegin
()
const_reverse_iterator
const_rbegin
"rbegin"
()
...
...
@@ -58,7 +58,7 @@ cdef extern from "<unordered_map>" namespace "std" nogil:
size_t
size
()
void
swap
(
unordered_map
&
)
iterator
upper_bound
(
T
&
)
const_iterator
const_upper_bound
"upper_bound"
(
key_type
&
)
const_iterator
const_upper_bound
"upper_bound"
(
T
&
)
#value_compare value_comp()
void
max_load_factor
(
float
)
float
max_load_factor
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment