Ignore:
Timestamp:
Oct 6, 2014, 8:10:05 PM (11 years ago)
Author:
Brent Fulgham
Message:

[Win] Use of 1-bit Enum type behaves improperly
https://bugs.webkit.org/show_bug.cgi?id=137471
<rdar://problem/18559172>

Reviewed by Mark Lam.

Represent 1-bit enum element as 'unsigned', as we have done elsewhere
in WebKit to avoid problems when building with MSVC.

  • debugger/Debugger.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/debugger/Debugger.h

    r173892 r174381  
    193193    bool m_hasHandlerForExceptionCallback : 1;
    194194    bool m_isInWorkerThread : 1;
    195     SteppingMode m_steppingMode : 1;
     195    unsigned m_steppingMode : 1; // SteppingMode
    196196
    197197    ReasonForPause m_reasonForPause;
Note: See TracChangeset for help on using the changeset viewer.