Skip to content

Instantly share code, notes, and snippets.

@SergNikitin
Created January 23, 2014 13:03
Show Gist options
  • Save SergNikitin/8578140 to your computer and use it in GitHub Desktop.
Save SergNikitin/8578140 to your computer and use it in GitHub Desktop.
template <typename T>
VectorIterator<T>& VectorIterator<T>::operator=(VectorIterator<T>& iter) {
elemPointer = iter.elemPointer;
return *this;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment