From 594d5bb6ee1514fa6cd1af36d890d9965ad01756 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 17 Oct 2000 11:32:09 +0000 Subject: [PATCH] try again more broken connections [SVN r7969] --- include/boost/config.hpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/boost/config.hpp b/include/boost/config.hpp index 13cc478b..8e0a738f 100644 --- a/include/boost/config.hpp +++ b/include/boost/config.hpp @@ -378,7 +378,17 @@ namespace std { inline const _Tp& max(const _Tp& __a, const _Tp& __b) { 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 // BOOST_CONFIG_HPP + +