From 11d6465326a047663fa5961a865fbd15df6e29e4 Mon Sep 17 00:00:00 2001 From: Janek Kozicki Date: Thu, 5 Dec 2019 17:18:05 +0100 Subject: fix AlignedVector3 inconsisent interface with other Vector classes, default constructor and operator- were missing. --- unsupported/test/alignedvector3.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'unsupported/test/alignedvector3.cpp') 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; -- cgit v1.2.3