jmckaskill / luaffi

Standalone FFI library for calling C functions from lua. Compatible with the luajit FFI interface.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

typedef to uint should be convertible to an enum

jmckaskill opened this issue · comments

typedef unsigned int foo;
enum foo {BAR};

C allows this, C++ does not.