Changeset 69970 in webkit for trunk/JavaScriptCore/wtf/OwnArrayPtr.h
- Timestamp:
- Oct 18, 2010, 10:23:53 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/OwnArrayPtr.h
r66139 r69970 24 24 #include "Assertions.h" 25 25 #include "Noncopyable.h" 26 #include "NullPtr.h" 26 27 #include "OwnArrayPtrCommon.h" 27 28 #include <algorithm> … … 74 75 75 76 OwnArrayPtr& operator=(const PassOwnArrayPtr<T>&); 77 OwnArrayPtr& operator=(std::nullptr_t) { clear(); return *this; } 76 78 template<typename U> OwnArrayPtr& operator=(const PassOwnArrayPtr<U>&); 77 79
Note:
See TracChangeset
for help on using the changeset viewer.