summaryrefslogtreecommitdiff
path: root/src/lj_obj.h
diff options
context:
space:
mode:
authorMike Pall <mike>2013-05-13 00:34:15 +0200
committerMike Pall <mike>2013-05-13 01:23:33 +0200
commit625ffca739a703906fbc321ef9405514d72480fe (patch)
treeca279d81071e8aa749797e0867e168c9db5c2bbe /src/lj_obj.h
parent19a9206caf1df71308bd8e4bd61c082026c6811c (diff)
downloadluajit-625ffca739a703906fbc321ef9405514d72480fe.tar.gz
luajit-625ffca739a703906fbc321ef9405514d72480fe.tar.bz2
luajit-625ffca739a703906fbc321ef9405514d72480fe.zip
Refactor raw object to pointer or string conversions.
Diffstat (limited to 'src/lj_obj.h')
-rw-r--r--src/lj_obj.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lj_obj.h b/src/lj_obj.h
index 31104429..5a05f38d 100644
--- a/src/lj_obj.h
+++ b/src/lj_obj.h
@@ -848,6 +848,7 @@ LJ_DATA const char *const lj_obj_itypename[~LJ_TNUMX+1];
848#define lj_typename(o) (lj_obj_itypename[itypemap(o)]) 848#define lj_typename(o) (lj_obj_itypename[itypemap(o)])
849 849
850/* Compare two objects without calling metamethods. */ 850/* Compare two objects without calling metamethods. */
851LJ_FUNC int lj_obj_equal(cTValue *o1, cTValue *o2); 851LJ_FUNC int LJ_FASTCALL lj_obj_equal(cTValue *o1, cTValue *o2);
852LJ_FUNC const void * LJ_FASTCALL lj_obj_ptr(cTValue *o);
852 853
853#endif 854#endif