build: fixed clang errors and warnings

This commit is contained in:
Eberhard Graether
2014-10-22 16:58:57 +02:00
parent 103e60b52a
commit 89ac3a0512
4 changed files with 23 additions and 23 deletions
+2 -2
View File
@@ -134,8 +134,8 @@ template<class U>
void Vector2<T>::operator=(const Vector2<U>& other)
{
this->assign(other);
x = Property(&VectorBase<T, 2>::m_values[m_xIndex]);
y = Property(&VectorBase<T, 2>::m_values[m_yIndex]);
x = Property<T>(&VectorBase<T, 2>::m_values[m_xIndex]);
y = Property<T>(&VectorBase<T, 2>::m_values[m_yIndex]);
}
typedef Vector2<float> Vec2f;