ソースを参照

fix compiler error in VecN

Kolja Strohm 2 年 前
コミット
bc8144f1f0
1 ファイル変更1 行追加1 行削除
  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;
 		}