Changeset 7269 for code/branches/consolecommands3/src/libraries/util
- Timestamp:
- Aug 30, 2010, 7:44:01 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/consolecommands3/src/libraries/util/SharedPtr.h
r7264 r7269 118 118 } 119 119 120 inline constSharedPtr& operator=(const SharedPtr& other)120 inline SharedPtr& operator=(const SharedPtr& other) 121 121 { 122 122 SharedPtr(other).swap(*this); … … 125 125 126 126 template <class O> 127 inline constSharedPtr& operator=(const SharedPtr<O>& other)127 inline SharedPtr& operator=(const SharedPtr<O>& other) 128 128 { 129 129 SharedPtr(other).swap(*this);
Note: See TracChangeset
for help on using the changeset viewer.