Changeset 229574 in webkit


Ignore:
Timestamp:
Mar 12, 2018 11:10:14 PM (6 years ago)
Author:
mark.lam@apple.com
Message:

Gardening: speculative build fix for WinCairo.
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

    r229570 r229574  
     12018-03-12  Mark Lam  <mark.lam@apple.com>
     2
     3        Gardening: speculative build fix for WinCairo.
     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  Yusuke Suzuki  <utatane.tea@gmail.com>
    212
  • trunk/Source/JavaScriptCore/runtime/NativeFunction.h

    r229557 r229574  
    6868    TaggedNativeFunction() = default;
    6969    TaggedNativeFunction(std::nullptr_t) : m_ptr(nullptr) { }
    70     explicit TaggedNativeFunction(uintptr_t bits) : m_ptr(bitwise_cast<void*>(bits)) { }
    71 #if COMPILER(MSVC)
    7270    explicit TaggedNativeFunction(intptr_t bits) : m_ptr(bitwise_cast<void*>(bits)) { }
    73 #endif
    7471
    7572    TaggedNativeFunction(NativeFunction func)
Note: See TracChangeset for help on using the changeset viewer.