Explorar el Código

fix compiler error in VecN

Kolja Strohm hace 2 años
padre
commit
bc8144f1f0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      VecN.h

+ 1 - 1
VecN.h

@@ -40,7 +40,7 @@ namespace Framework
 		inline VecN& normalize()
 		{
 			const T length = getLength();
-			for (i = 0; i < N; i++)
+			for (int i = 0; i < N; i++)
 				v[i] /= length;
 			return *this;
 		}