no message

[SVN r8034]
This commit is contained in:
Dave Abrahams 2000-10-26 21:04:37 +00:00
parent 9b78701511
commit 178f406dca

View File

@ -301,7 +301,7 @@ using std::abs;
template <typename IntType>
inline rational<IntType> abs(const rational<IntType>& r)
{
#ifndef BOOST_NO_STDC_NAMESPACE
#if !defined(BOOST_NO_STDC_NAMESPACE) && !defined(BOOST_MSVC)
// We want to use abs() unadorned below, so that if IntType is a
// user-defined type, the name lookup rules will work to find an
// appropriate abs() defined for IntType.