Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81e51c9 commit 2d077f9Copy full SHA for 2d077f9
1 file changed
Cython/Utility/CppConvert.pyx
@@ -5,6 +5,7 @@
5
6
cdef extern from *:
7
cdef cppclass string "std::string":
8
+ string()
9
string(char* c_str, size_t size)
10
11
@cname("{{cname}}")
@@ -147,6 +148,7 @@ cdef object {{cname}}(const_cpp_set[X]& s):
147
148
149
150
cdef cppclass pair "std::pair" [T, U]:
151
+ pair()
152
pair(T&, U&)
153
154
0 commit comments