Compile fix

This commit is contained in:
Aleric Inglewood
2013-03-27 00:56:28 +01:00
parent 303840f729
commit fa05647068

View File

@@ -153,7 +153,7 @@ inline S32 LLDynamicArray<Type,BlockSize>::put(const Type &obj)
template <typename Type,int BlockSize>
inline void LLDynamicArray<Type,BlockSize>::operator+=(const LLDynamicArray<Type,BlockSize> &other)
{
insert(this->end(), other.begin(), other.end());
this->insert(this->end(), other.begin(), other.end());
}
//--------------------------------------------------------