summaryrefslogtreecommitdiff
path: root/upb/bindings
diff options
context:
space:
mode:
authorJosh Haberman <jhaberman@gmail.com>2016-12-05 05:51:58 +0000
committerJosh Haberman <jhaberman@gmail.com>2016-12-05 05:51:58 +0000
commit31225357260d26e203a5f61d910cd405ab819e3b (patch)
tree184910d2046df10367b8a1eb44e662750ea0fdfb /upb/bindings
parent62472c1161ea859fecf1707a28c79dd555412f75 (diff)
Fleshed out comments and removed some dead code.
Diffstat (limited to 'upb/bindings')
-rw-r--r--upb/bindings/lua/upb.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/upb/bindings/lua/upb.h b/upb/bindings/lua/upb.h
index 30fc59d..109113c 100644
--- a/upb/bindings/lua/upb.h
+++ b/upb/bindings/lua/upb.h
@@ -84,15 +84,6 @@ void lupb_pushuint32(lua_State *L, uint32_t val);
void lupb_pushdouble(lua_State *L, double val);
void lupb_pushfloat(lua_State *L, float val);
-/* Builds and returns a handlers object for populating a lupb_msg described by
- * the MessageDef at "narg".
- *
- * TODO(haberman): factor this so it doesn't have to take a lua_State. We
- * should be able to generate message handlers for a upb_msgdef that can be used
- * across many Lua states, so we can shared JIT code across lua_States. */
-const upb_handlers *lupb_msg_newwritehandlers(lua_State *L, int narg,
- const void *owner);
-
/* Registers a type with the given name, methods, and metamethods.
* If "refcount_gc" is true, adds a __gc metamethod that does an unref.
* Refcounted types must be allocated with lupb_refcounted_push[new]wrapper. */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback