Ignore:
Timestamp:
Sep 16, 2008, 9:59:57 AM (17 years ago)
Author:
[email protected]
Message:

2008-09-16 Dimitri Glazkov <[email protected]>

Fix the Windows build.

Add some extra parentheses to stop MSVC from complaining so much.

  • VM/Machine.cpp: (JSC::Machine::privateExecute): (JSC::Machine::cti_op_stricteq): (JSC::Machine::cti_op_nstricteq):
  • kjs/operations.cpp: (JSC::strictEqual):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/operations.cpp

    r36483 r36509  
    105105        return v1 == v2;
    106106
    107     if (JSImmediate::isEitherImmediate(v1, v2) & v1 != JSImmediate::from(0) & v2 != JSImmediate::from(0))
     107    if (JSImmediate::isEitherImmediate(v1, v2) & (v1 != JSImmediate::from(0)) & (v2 != JSImmediate::from(0)))
    108108        return false;
    109109
Note: See TracChangeset for help on using the changeset viewer.