X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bc6e45effd2e9460dd74972af247ba21182fd777..efd201684c340bfd7508b656bdbc59f57e7e7c67:/src/bindings/lua/simgrid_lua.c diff --git a/src/bindings/lua/simgrid_lua.c b/src/bindings/lua/simgrid_lua.c index 9de044a556..3496588228 100644 --- a/src/bindings/lua/simgrid_lua.c +++ b/src/bindings/lua/simgrid_lua.c @@ -858,12 +858,6 @@ static void register_task_functions(lua_State* L) { // writing doesn't work lua_setfield(L, -2, "__index"); /* simgrid.task mt */ - lua_pushliteral(L, "__metatable"); - /* simgrid.task mt "__metatable" */ - lua_pushnumber(L, 0); - /* simgrid.task mt "__metatable" 0 */ - /* protect the metatable from Lua code (by setting any value to __metatable) */ - lua_rawset(L, -3); /* simgrid.task mt */ lua_pop(L, 2); /* -- */ } @@ -896,12 +890,6 @@ static void register_host_functions(lua_State* L) { // FIXME: cannot work currently, same problem as tasks lua_setfield(L, -2, "__index"); /* simgrid.host mt */ - lua_pushliteral(L, "__metatable"); - /* simgrid.host mt "__metatable" */ - lua_pushnumber(L, 0); - /* simgrid.host mt "__metatable" 0 */ - /* protect the metatable from Lua code (by setting any value to __metatable) */ - lua_rawset(L, -3); /* simgrid.host mt */ lua_pop(L, 2); /* -- */ }