From e96cecc13aa0eec97d37054deff53d7b52e694b9 Mon Sep 17 00:00:00 2001 From: Pavel Krajcevski Date: Wed, 12 Mar 2014 03:01:28 -0400 Subject: [PATCH] Add some typename specifiers --- Base/include/VectorBase.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Base/include/VectorBase.h b/Base/include/VectorBase.h index 5b04112..c9e4ace 100644 --- a/Base/include/VectorBase.h +++ b/Base/include/VectorBase.h @@ -110,7 +110,7 @@ namespace FasTC { const VectorTypeTwo &v2) { VectorTypeOne a(v1); for(int i = 0; i < VectorTypeOne::Size; i++) { - a(i) += static_cast(v2[i]); + a(i) += static_cast(v2[i]); } return a; } @@ -132,7 +132,7 @@ namespace FasTC { const VectorTypeTwo &v2) { VectorTypeOne a(v1); for(int i = 0; i < VectorTypeOne::Size; i++) { - a(i) -= static_cast(v2[i]); + a(i) -= static_cast(v2[i]); } return a; }