Ignore:
Timestamp:
Oct 17, 2014, 2:54:14 AM (11 years ago)
Author:
[email protected]
Message:

Use WTF::move() instead of std::move() to help ensure move semantics in JavaScriptCore
https://bugs.webkit.org/show_bug.cgi?id=137809

Reviewed by Csaba Osztrogonác.

Substitution of WTF::move() for std::move(). Clean up std::move() in JavaScriptCore.

  • bytecode/GetByIdStatus.cpp:

(JSC::GetByIdStatus::computeForStubInfo):

  • bytecode/PutByIdStatus.cpp:

(JSC::PutByIdStatus::computeForStubInfo):

  • bytecode/PutByIdVariant.cpp:

(JSC::PutByIdVariant::setter):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/bytecode/PutByIdStatus.cpp

    r173797 r174815  
    250250                    variant = PutByIdVariant::setter(
    251251                        structure, complexGetStatus.offset(), complexGetStatus.chain(),
    252                         std::move(callLinkStatus));
     252                        WTF::move(callLinkStatus));
    253253                } }
    254254                break;
Note: See TracChangeset for help on using the changeset viewer.