aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/geo_orthomethods.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2011-11-05 23:30:49 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2011-11-05 23:30:49 +0100
commit478de03bd8d91ab6238f322ed4783daa71a97b40 (patch)
tree827465ec30c7f10f753513b46f7b92b2e08302dc /test/geo_orthomethods.cpp
parentcdd3e850608890acf74c56f4541a3b39078af8f0 (diff)
fix a couple of warnings in the unit tests
Diffstat (limited to 'test/geo_orthomethods.cpp')
-rw-r--r--test/geo_orthomethods.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/geo_orthomethods.cpp b/test/geo_orthomethods.cpp
index 020ae7103..aa3c8b61d 100644
--- a/test/geo_orthomethods.cpp
+++ b/test/geo_orthomethods.cpp
@@ -88,9 +88,7 @@ template<typename Scalar, int Size> void orthomethods(int size=Size)
typedef Matrix<Scalar,Size,3> MatrixN3;
typedef Matrix<Scalar,3,1> Vector3;
- VectorType v0 = VectorType::Random(size),
- v1 = VectorType::Random(size),
- v2 = VectorType::Random(size);
+ VectorType v0 = VectorType::Random(size);
// unitOrthogonal
VERIFY_IS_MUCH_SMALLER_THAN(v0.unitOrthogonal().dot(v0), Scalar(1));