Ignore:
Timestamp:
08/17/13 21:22:56 (12 years ago)
Author:
cahir
Message:

Fix warnings on MacOSX 64-bit with clang 3.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gui/gui_style.cc

    r121 r204  
    4848        lua::stack_guard guard( m_lua );
    4949        if ( !resolve( e, entry, LUA_TNUMBER ) ) return false;
    50         i = lua_tointeger( m_lua, -1 );
     50        i = static_cast< int >( lua_tointeger( m_lua, -1 ) );
    5151        return true;
    5252}
Note: See TracChangeset for help on using the changeset viewer.