Ignore:
Timestamp:
Oct 4, 2013, 5:40:09 PM (12 years ago)
Author:
Brent Fulgham
Message:

Silence compiler warning when building 64-bit (on Windows)

Reviewed by Geoffrey Garen.

  • jit/JSInterfaceJIT.h: Add a static cast for assignment.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jit/JSInterfaceJIT.h

    r156896 r156934  
    193193        COMPILE_ASSERT(Int32Tag == JSValue::Int32Tag, Int32Tag_out_of_sync);
    194194#else
    195         static const unsigned Int32Tag = TagTypeNumber >> 32;
     195        static const unsigned Int32Tag = static_cast<unsigned>(TagTypeNumber >> 32);
    196196#endif
    197197        inline Jump emitLoadJSCell(unsigned virtualRegisterIndex, RegisterID payload);
Note: See TracChangeset for help on using the changeset viewer.