try again more broken connections

[SVN r7969]
This commit is contained in:
John Maddock
2000-10-17 11:32:09 +00:00
parent fce75f3760
commit 594d5bb6ee

View File

@@ -378,7 +378,17 @@ namespace std {
inline const _Tp& max(const _Tp& __a, const _Tp& __b) { inline const _Tp& max(const _Tp& __a, const _Tp& __b) {
return __a < __b ? __b : __a; return __a < __b ? __b : __a;
} }
#ifdef BOOST_MSVC
inline long min(long __a, long __b) {
return __b < __a ? __b : __a;
}
inline long max(long __a, long __b) {
return __a < __b ? __b : __a;
}
#endif
} }
#endif #endif
#endif // BOOST_CONFIG_HPP #endif // BOOST_CONFIG_HPP