Changeset 533 for trunk/src/lua/lua_values.cc
- Timestamp:
- 01/12/17 13:16:48 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lua/lua_values.cc
r490 r533 105 105 size_t length = 0; 106 106 const char* result = lua_tolstring( L, index, &length ); 107 return string_view( result, length);107 return string_view( result, static_cast< uint32 >( length ) ); 108 108 } 109 109
Note: See TracChangeset
for help on using the changeset viewer.