Changeset 76425 in webkit for trunk/Source/JavaScriptCore/wtf/HashSet.h
- Timestamp:
- Jan 21, 2011, 8:27:18 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/wtf/HashSet.h
r76248 r76425 176 176 177 177 template<typename T, typename U, typename V> 178 pair<typename HashSet<T, U, V>::iterator, bool> HashSet<T, U, V>::add(const ValueType& value)178 inline pair<typename HashSet<T, U, V>::iterator, bool> HashSet<T, U, V>::add(const ValueType& value) 179 179 { 180 180 return m_impl.add(value); … … 183 183 template<typename Value, typename HashFunctions, typename Traits> 184 184 template<typename T, typename HashTranslator> 185 pair<typename HashSet<Value, HashFunctions, Traits>::iterator, bool>185 inline pair<typename HashSet<Value, HashFunctions, Traits>::iterator, bool> 186 186 HashSet<Value, HashFunctions, Traits>::add(const T& value) 187 187 {
Note:
See TracChangeset
for help on using the changeset viewer.