aboutsummaryrefslogtreecommitdiff
path: root/src/lj_errmsg.h
diff options
context:
space:
mode:
authorMike Pall <mike>2012-06-14 19:54:07 +0200
committerMike Pall <mike>2012-06-14 19:54:07 +0200
commit946c7418d59dd201386ee66686075595754cd86d (patch)
tree1930adb8b7f969b8b69ed3b634fd1736e7d5944e /src/lj_errmsg.h
parentca6bf2d9a41fb2c0c80bafdbaf2e29421b2cb55d (diff)
downloadluajit-946c7418d59dd201386ee66686075595754cd86d.tar.gz
luajit-946c7418d59dd201386ee66686075595754cd86d.tar.bz2
luajit-946c7418d59dd201386ee66686075595754cd86d.zip
FFI: Add support for parameterized C types.
Diffstat (limited to 'src/lj_errmsg.h')
-rw-r--r--src/lj_errmsg.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_errmsg.h b/src/lj_errmsg.h
index 5ba619bf..2d677cca 100644
--- a/src/lj_errmsg.h
+++ b/src/lj_errmsg.h
@@ -149,6 +149,7 @@ ERRDEF(FFI_BADSCL, "bad storage class")
149ERRDEF(FFI_DECLSPEC, "declaration specifier expected") 149ERRDEF(FFI_DECLSPEC, "declaration specifier expected")
150ERRDEF(FFI_BADTAG, "undeclared or implicit tag " LUA_QS) 150ERRDEF(FFI_BADTAG, "undeclared or implicit tag " LUA_QS)
151ERRDEF(FFI_REDEF, "attempt to redefine " LUA_QS) 151ERRDEF(FFI_REDEF, "attempt to redefine " LUA_QS)
152ERRDEF(FFI_NUMPARAM, "wrong number of type parameters")
152ERRDEF(FFI_INITOV, "too many initializers for " LUA_QS) 153ERRDEF(FFI_INITOV, "too many initializers for " LUA_QS)
153ERRDEF(FFI_BADCONV, "cannot convert " LUA_QS " to " LUA_QS) 154ERRDEF(FFI_BADCONV, "cannot convert " LUA_QS " to " LUA_QS)
154ERRDEF(FFI_BADLEN, "attempt to get length of " LUA_QS) 155ERRDEF(FFI_BADLEN, "attempt to get length of " LUA_QS)