Changeset 213 for trunk/src


Ignore:
Timestamp:
09/09/13 20:04:42 (12 years ago)
Author:
epyon
Message:
  • lua/state - upvalue_index moved to lua/values
Location:
trunk/src/lua
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lua/lua_state.cc

    r212 r213  
    433433}
    434434
    435 int nv::lua::upvalue_index( int i )
    436 {
    437         return lua_upvalueindex(i);
    438 }
  • trunk/src/lua/lua_values.cc

    r208 r213  
    1313using nv::lua::lnumber;
    1414using nv::lua::lunsigned;
     15
     16int nv::lua::detail::upvalue_index( int i )
     17{
     18        return lua_upvalueindex(i);
     19}
    1520
    1621bool nv::lua::detail::is_userdata( lua_State *L, int index, const char* metatable )
Note: See TracChangeset for help on using the changeset viewer.