Remove types.Enum since it fails on DEBUG builds
It turns out we never should of been creating an ENUM type since it's prohibited by libcapnp. Fixes #57
This commit is contained in:
@@ -2697,9 +2697,9 @@ types.Data = _data
|
|||||||
# _list.thisptr = capnp.SchemaType(capnp.TypeWhichLIST)
|
# _list.thisptr = capnp.SchemaType(capnp.TypeWhichLIST)
|
||||||
# types.list = _list
|
# types.list = _list
|
||||||
|
|
||||||
cdef _SchemaType _enum = _SchemaType()
|
# cdef _SchemaType _enum = _SchemaType()
|
||||||
_enum.thisptr = capnp.SchemaType(capnp.TypeWhichENUM)
|
# _enum.thisptr = capnp.SchemaType(capnp.TypeWhichENUM)
|
||||||
types.Enum = _enum
|
# types.Enum = _enum
|
||||||
|
|
||||||
# cdef _SchemaType _struct = _SchemaType()
|
# cdef _SchemaType _struct = _SchemaType()
|
||||||
# _struct.thisptr = capnp.SchemaType(capnp.TypeWhichSTRUCT)
|
# _struct.thisptr = capnp.SchemaType(capnp.TypeWhichSTRUCT)
|
||||||
|
|||||||
Reference in New Issue
Block a user