2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-21 15:32:12 +00:00

Workaround for Comeau - would be nice to make this version specific

svn path=/trunk/boost/boost/numeric/ublas/; revision=24669
This commit is contained in:
Michael Stevens
2004-08-23 13:50:30 +00:00
parent ff905cc506
commit 39eb93d4d1

View File

@@ -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 <cmath>
// This should should be library version specific, but to find this out we need to include a header!
#include <cstdlib>
#endif