Many of the regression tests for the date time library are failing
currently because the library relies on std::abs<long long> being
available. AKAIK, the C++ standard doesn't require this so the library
shouldn't make use of it.
Maybe datetime should specify it's own version of abs like this:
#include <cstdlib>
#include <stdlib.h>
template <typename T> T abs(T i) { return std::abs(i); }
template <> long long abs(long long i) {return ::llabs(i); }
Markus
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
- RE: [boost] datetime and long long Markus Schöpflin
- RE: [boost] datetime and long long Jeff Garland
- [boost] Re: datetime and long long Markus Schöpflin
- RE: [boost] Re: datetime and long long Jeff Garland
- RE: [boost] datetime and long long Beman Dawes
- RE: [boost] datetime and long long Jeff Garland
- Re: [boost] datetime and long long David Abrahams
- [boost] Re: datetime and long long Markus Schöpflin
- RE: [boost] Re: datetime and long l... Jeff Garland
- RE: [boost] Re: datetime and l... Jeff Garland
- [boost] Re: datetime and l... Markus Schöpflin