From 83a7b7c44c4842e1cfa89179624f4448d39a9e5b Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Thu, 22 Oct 2009 15:56:10 -0400 Subject: support gcc 3.3 --- test/geo_hyperplane.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/geo_hyperplane.cpp b/test/geo_hyperplane.cpp index f8281a16b..010989feb 100644 --- a/test/geo_hyperplane.cpp +++ b/test/geo_hyperplane.cpp @@ -121,7 +121,8 @@ template void lines() VERIFY_IS_APPROX(result, center); // check conversions between two types of lines - CoeffsType converted_coeffs = HLine(PLine(line_u)).coeffs(); + PLine pl(line_u); // gcc 3.3 will commit suicide if we don't name this variable + CoeffsType converted_coeffs = HLine(pl).coeffs(); converted_coeffs *= (line_u.coeffs()[0])/(converted_coeffs[0]); VERIFY(line_u.coeffs().isApprox(converted_coeffs)); } -- cgit v1.2.3