Changeset 177130 in webkit for trunk/Source/JavaScriptCore/heap/CopiedBlock.h
- Timestamp:
- Dec 10, 2014, 9:31:04 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/CopiedBlock.h
r164448 r177130 33 33 #include "Options.h" 34 34 #include <wtf/Atomics.h> 35 #include <wtf/OwnPtr.h>36 #include <wtf/PassOwnPtr.h>37 35 38 36 namespace JSC { … … 95 93 96 94 SpinLock m_workListLock; 97 OwnPtr<CopyWorkList> m_workList;95 std::unique_ptr<CopyWorkList> m_workList; 98 96 99 97 size_t m_remaining; … … 155 153 m_isPinned = false; 156 154 if (m_workList) 157 m_workList .clear();155 m_workList = nullptr; 158 156 } 159 157 … … 186 184 m_isPinned = true; 187 185 if (m_workList) 188 m_workList .clear();186 m_workList = nullptr; 189 187 } 190 188
Note:
See TracChangeset
for help on using the changeset viewer.