Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 17, 2006, 2:50:15 PM (18 years ago)
Author:
bensch
Message:

links and compiles again

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/lib/util/executor/executor_lua_state.cc

    r9752 r9753  
    2323
    2424
    25 template<typename type> inline type fromLua(lua_State* state, int index) { type *obj = Lunar<type>::check(state, 1); lua_remove(state, 1); return obj; };
     25template<typename type> type fromLua(lua_State* state, int index) { type *obj = Lunar<type>::check(state, 1); lua_remove(state, 1); return obj; };
     26template<typename type> void toLua(lua_State* state, type value) { Lunar<type>::push(state, value, false); };
    2627
    27 template<typename type> void toLua(lua_State* state, type value) { Lunar<type>::push(state, value, false); };
    28 /** @see template<typename type> inline type fromLua(lua_State* state, int index) */
    29 template<> inline const std::string& fromLua<const std::string&>(lua_State* state, int index) { temp[index] = lua_tostring(state, index); return temp[index]; };
     28template<> const std::string& fromLua<const std::string&>(lua_State* state, int index) { temp[index] = lua_tostring(state, index); return temp[index]; };
Note: See TracChangeset for help on using the changeset viewer.