Ignore:
Timestamp:
06/15/13 17:47:57 (12 years ago)
Author:
epyon
Message:
  • Nova builds with -Weverything/-Wall/-pedantic/etc on: on MSVC 2012 on GCC 4.6.3 on clang 3.2
  • ... without a single fucking warning.
File:
1 edited

Legend:

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

    r85 r121  
    3030{
    3131        index = lua_absindex( L, index );
    32         int len = lua_rawlen( L, index );
     32        int len = static_cast<int>( lua_rawlen( L, index ) );
    3333        int i   = len;
    3434        lua_createtable( L, len, 0 );
Note: See TracChangeset for help on using the changeset viewer.