Commit fa0a8e3a authored by Stefan Behnel's avatar Stefan Behnel

merge

parents 9cb1c32f 6d3aa1bd
......@@ -9,6 +9,8 @@ missing_baseclass_in_predecl_T262
cfunc_call_tuple_args_T408
cascaded_list_unpacking_T467
compile.cpp_operators
cpp_templated_ctypedef
cpp_structs
# CPython regression tests that don't current work:
pyregr.test_threadsignals
......
cdef extern from "point.h" namespace "geometry":
cdef struct Point:
double x
double y
int color
cdef Point p = Point(0.0, 0.0, 0)
the_point = p
cdef extern from *:
cdef cppclass Foo[T]:
pass
ctypedef Foo[int] IntFoo
#ifndef POINT_H
#define POINT_H
namespace geometry {
struct Point
{
double x;
double y;
int color;
};
}
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment