X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/93a3786624b2768d89bfa27e46598dc64e2fb70a..refs/heads/master:/heap/GCThread.h?ds=inline diff --git a/heap/GCThread.h b/heap/GCThread.h index 0d218f9..b727799 100644 --- a/heap/GCThread.h +++ b/heap/GCThread.h @@ -28,7 +28,6 @@ #include #include -#include #include namespace JSC { @@ -39,7 +38,7 @@ class SlotVisitor; class GCThread { public: - GCThread(GCThreadSharedData&, SlotVisitor*, CopyVisitor*); + GCThread(GCThreadSharedData&, std::unique_ptr, std::unique_ptr); SlotVisitor* slotVisitor(); CopyVisitor* copyVisitor(); @@ -54,8 +53,8 @@ private: ThreadIdentifier m_threadID; GCThreadSharedData& m_shared; - OwnPtr m_slotVisitor; - OwnPtr m_copyVisitor; + std::unique_ptr m_slotVisitor; + std::unique_ptr m_copyVisitor; }; } // namespace JSC