aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test
diff options
context:
space:
mode:
authorGravatar Janek Kozicki <jkozicki-yade@pg.edu.pl>2019-12-05 17:18:05 +0100
committerGravatar Janek Kozicki <jkozicki-yade@pg.edu.pl>2019-12-06 21:07:39 +0100
commit11d6465326a047663fa5961a865fbd15df6e29e4 (patch)
tree29c7055949037cba2e66b5bfb6b8ea49f0795043 /unsupported/test
parentbb7ccac3af90acb15e1bdc3943758ebb2ae22790 (diff)
fix AlignedVector3 inconsisent interface with other Vector classes, default constructor and operator- were missing.
Diffstat (limited to 'unsupported/test')
-rw-r--r--unsupported/test/alignedvector3.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/unsupported/test/alignedvector3.cpp b/unsupported/test/alignedvector3.cpp
index fcc89daab..f442e416a 100644
--- a/unsupported/test/alignedvector3.cpp
+++ b/unsupported/test/alignedvector3.cpp
@@ -70,6 +70,9 @@ void alignedvector3()
VERIFY_IS_APPROX(f6,r1-r4);
}
+ FastType f8, f9(0,0,0);
+ VERIFY_IS_APPROX(f9-f1,-f1);
+
std::stringstream ss1, ss2;
ss1 << f1;
ss2 << r1;