From eac79b6d2e0a4feeccf7e5936cd972fdc4a74ac7 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Sat, 9 May 2009 03:41:17 +0000 Subject: CREDIT Hauke Heibel, fix MSVC warnings --- unsupported/test/BVH.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unsupported/test/BVH.cpp') diff --git a/unsupported/test/BVH.cpp b/unsupported/test/BVH.cpp index 879daacc2..ea03c2d24 100644 --- a/unsupported/test/BVH.cpp +++ b/unsupported/test/BVH.cpp @@ -22,8 +22,8 @@ // License and a copy of the GNU General Public License along with // Eigen. If not, see . -#include #include "main.h" +#include #include inline double SQR(double x) { return x * x; } @@ -43,7 +43,7 @@ EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF_VECTORIZABLE_FIXED_SIZE(double, Dim) }; -template AlignedBox ei_bounding_box(const Matrix &v) { return AlignedBox(v); } +template AlignedBox ei_bounding_box(const Matrix &v) { return AlignedBox(v); } template AlignedBox ei_bounding_box(const Ball &b) { return AlignedBox(b.center.cwise() - b.radius, b.center.cwise() + b.radius); } -- cgit v1.2.3