From b7241a6e5c943d37d5d2e5fc9a643848deb8beec Mon Sep 17 00:00:00 2001 From: "chappuis.daniel" Date: Thu, 12 Feb 2009 12:37:33 +0000 Subject: [PATCH] git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@91 92aac97c-a6ce-11dd-a772-7fcde58d38e6 --- .../reactphysics3d/testing/testing_mathematics/Matrix3x3Test.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/reactphysics3d/testing/testing_mathematics/Matrix3x3Test.h b/sources/reactphysics3d/testing/testing_mathematics/Matrix3x3Test.h index d90d1cb1..04859c39 100644 --- a/sources/reactphysics3d/testing/testing_mathematics/Matrix3x3Test.h +++ b/sources/reactphysics3d/testing/testing_mathematics/Matrix3x3Test.h @@ -380,7 +380,7 @@ class Matrix3x3Test : public TestSuite::Test { test_(result.getValue(2,2) == 256); } - testOperatorMultiplicationWithVector() { + void testOperatorMultiplicationWithVector() { Vector3D vector(4,7,3); Vector3D result = matrix1 * vector; test_(result.getX() == 46);