Codechange: Removed SmallVector::Assign()

pull/82/head
Henry Wilson 6 years ago committed by PeterN
parent 5795f66d2e
commit bc7dcaffca

@ -60,23 +60,12 @@ public:
template <uint X>
SmallVector &operator=(const SmallVector<T, X> &other)
{
this->Assign(other);
std::vector<T>::operator=(other);
return *this;
}
~SmallVector() = default;
/**
* Assign items from other vector.
*/
template <uint X>
inline void Assign(const SmallVector<T, X> &other)
{
if ((const void *)&other == (void *)this) return;
std::vector<T>::operator=(other);
}
/**
* Append an item and return it.
* @param to_add the number of items to append

Loading…
Cancel
Save