From 39eb93d4d1f9cddfc2ffe5cbb9bd0a26b3d7d87f Mon Sep 17 00:00:00 2001 From: Michael Stevens Date: Mon, 23 Aug 2004 13:50:30 +0000 Subject: [PATCH] Workaround for Comeau - would be nice to make this version specific svn path=/trunk/boost/boost/numeric/ublas/; revision=24669 --- include/boost/numeric/ublas/config.hpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/boost/numeric/ublas/config.hpp b/include/boost/numeric/ublas/config.hpp index a420e5f0..05b73973 100644 --- a/include/boost/numeric/ublas/config.hpp +++ b/include/boost/numeric/ublas/config.hpp @@ -162,7 +162,11 @@ namespace std { // Thanks to Kresimir Fresl for porting to Comeau. #if defined (__COMO__) && ! defined (BOOST_STRICT_CONFIG) -// Comeau should not have any problems + +// Without this we don't get abs overloads for float types in +// This should should be library version specific, but to find this out we need to include a header! +#include + #endif