Ignore:
Timestamp:
01/12/17 14:41:17 (8 years ago)
Author:
epyon
Message:

CONTINUED:

  • getting rid of size_t
  • datatypes now restricted to uint32 size
  • 64-bit compatibility
  • copyright updates where modified
File:
1 edited

Legend:

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

    r494 r534  
    331331int nlua_rawlen( lua_State* L, int index )
    332332{
    333         return lua_objlen( L, index );
     333        return static_cast<int>( lua_objlen( L, index ) );
    334334}
    335335
Note: See TracChangeset for help on using the changeset viewer.