Changeset 188040 in webkit for trunk/Source/JavaScriptCore/heap/WeakInlines.h
- Timestamp:
- Aug 6, 2015, 9:24:38 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/WeakInlines.h
r170774 r188040 100 100 } 101 101 102 template<typename T> inline Weak<T>::operator UnspecifiedBoolType*() const102 template<typename T> inline Weak<T>::operator bool() const 103 103 { 104 return reinterpret_cast<UnspecifiedBoolType*>(!!*this);104 return !!*this; 105 105 } 106 106
Note:
See TracChangeset
for help on using the changeset viewer.