From: Christophe ThiƩry Date: Mon, 7 Nov 2011 21:14:27 +0000 (+0100) Subject: This structure was not necessary X-Git-Tag: exp_20120216~447 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/6e5cfd7ff86900354c20502af95ee5f751492753?ds=sidebyside This structure was not necessary --- diff --git a/src/bindings/lua/simgrid_lua.c b/src/bindings/lua/simgrid_lua.c index 8daf996ada..71eb3070d3 100644 --- a/src/bindings/lua/simgrid_lua.c +++ b/src/bindings/lua/simgrid_lua.c @@ -20,13 +20,6 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(lua, bindings, "Lua Bindings"); #define AS_MODULE_NAME "simgrid.AS" #define TRACE_MODULE_NAME "simgrid.Trace" -/** - * @brief Userdata type for tasks. - */ -typedef struct s_sglua_task { - m_task_t msg_task; /**< the task, or NULL if I sent it to someone else */ -} s_sglua_task_t, *sglua_task_t; - static lua_State* sglua_maestro_state; static void register_c_functions(lua_State *L);