Changeset 7268 for code/trunk/src/libraries/core/ObjectListIterator.h
- Timestamp:
- Aug 30, 2010, 7:34:07 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/ObjectListIterator.h
r5929 r7268 101 101 @param element The ObjectListElement 102 102 */ 103 inline constObjectListIterator<T>& operator=(ObjectListElement<T>* element)103 inline ObjectListIterator<T>& operator=(ObjectListElement<T>* element) 104 104 { 105 105 this->element_ = element; … … 111 111 @param element The other ObjectListIterator 112 112 */ 113 inline constObjectListIterator<T>& operator=(const ObjectListIterator<T>& other)113 inline ObjectListIterator<T>& operator=(const ObjectListIterator<T>& other) 114 114 { 115 115 this->element_ = other.element_;
Note: See TracChangeset
for help on using the changeset viewer.