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:
Jason Paryani
2015-03-10 00:37:48 -07:00
parent 02907bb50c
commit be90175f0f

View File

@@ -2697,9 +2697,9 @@ types.Data = _data
# _list.thisptr = capnp.SchemaType(capnp.TypeWhichLIST)
# types.list = _list
cdef _SchemaType _enum = _SchemaType()
_enum.thisptr = capnp.SchemaType(capnp.TypeWhichENUM)
types.Enum = _enum
# cdef _SchemaType _enum = _SchemaType()
# _enum.thisptr = capnp.SchemaType(capnp.TypeWhichENUM)
# types.Enum = _enum
# cdef _SchemaType _struct = _SchemaType()
# _struct.thisptr = capnp.SchemaType(capnp.TypeWhichSTRUCT)