Explorar o código

fix compiler error in VecN

Kolja Strohm %!s(int64=2) %!d(string=hai) anos
pai
achega
bc8144f1f0
Modificáronse 1 ficheiros con 1 adicións e 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;
 		}