Ignore:
Timestamp:
01/12/17 13:16:48 (8 years ago)
Author:
epyon
Message:
  • 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_values.cc

    r490 r533  
    105105        size_t length = 0;
    106106        const char* result = lua_tolstring( L, index, &length );
    107         return string_view( result, length );
     107        return string_view( result, static_cast< uint32 >( length ) );
    108108}
    109109
Note: See TracChangeset for help on using the changeset viewer.