Changeset 229557 in webkit


Ignore:
Timestamp:
Mar 12, 2018 3:24:37 PM (6 years ago)
Author:
mark.lam@apple.com
Message:

Gardening: speculative build fix for Windows.
https://bugs.webkit.org/show_bug.cgi?id=183573

Not reviewed.

  • runtime/NativeFunction.h:

(JSC::TaggedNativeFunction::TaggedNativeFunction):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r229551 r229557  
     12018-03-12  Mark Lam  <mark.lam@apple.com>
     2
     3        Gardening: speculative build fix for Windows.
     4        https://bugs.webkit.org/show_bug.cgi?id=183573
     5
     6        Not reviewed.
     7
     8        * runtime/NativeFunction.h:
     9        (JSC::TaggedNativeFunction::TaggedNativeFunction):
     10
    1112018-03-12  Mark Lam  <mark.lam@apple.com>
    212
  • trunk/Source/JavaScriptCore/runtime/NativeFunction.h

    r229547 r229557  
    6969    TaggedNativeFunction(std::nullptr_t) : m_ptr(nullptr) { }
    7070    explicit TaggedNativeFunction(uintptr_t bits) : m_ptr(bitwise_cast<void*>(bits)) { }
     71#if COMPILER(MSVC)
     72    explicit TaggedNativeFunction(intptr_t bits) : m_ptr(bitwise_cast<void*>(bits)) { }
     73#endif
    7174
    7275    TaggedNativeFunction(NativeFunction func)
Note: See TracChangeset for help on using the changeset viewer.