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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
08dcfd70
Commit
08dcfd70
authored
Feb 22, 2016
by
Kevin R. Thornton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(crude) addition of std::allocator<T>
parent
895da799
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
Cython/Includes/libcpp/memory.pxd
Cython/Includes/libcpp/memory.pxd
+14
-0
No files found.
Cython/Includes/libcpp/memory.pxd
View file @
08dcfd70
...
@@ -4,6 +4,20 @@ cdef extern from "<memory>" namespace "std" nogil:
...
@@ -4,6 +4,20 @@ cdef extern from "<memory>" namespace "std" nogil:
cdef
cppclass
default_delete
[
T
]:
cdef
cppclass
default_delete
[
T
]:
default_delete
()
default_delete
()
cdef
cppclass
allocator
[
T
]:
allocator
()
allocator
(
const
allocator
&
)
allocator
[
U
](
const
allocator
[
U
]
&
)
T
*
address
(
T
&
)
const
T
*
address
(
const
T
&
)
const
T
*
allocate
(
size_t
n
)
# Not to standard. should be a second default argument
void
deallocate
(
T
*
,
size_t
)
size_t
max_size
()
const
void
construct
(
T
*
,
const
T
&
)
#C++98. The C++11 version is variadic AND perfect-forwarding
void
destroy
(
T
*
)
#C++98
void
destroy
[
U
](
U
*
)
cdef
cppclass
unique_ptr
[
T
,
DELETER
=*
]:
cdef
cppclass
unique_ptr
[
T
,
DELETER
=*
]:
unique_ptr
()
unique_ptr
()
unique_ptr
(
nullptr_t
)
unique_ptr
(
nullptr_t
)
...
...
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