1 //////////////////////////////////////////////////////////////////////////////
3 // (C) Copyright Ion Gaztanaga 2005-2008.
5 // Distributed under the Boost Software License, Version 1.0.
6 // (See accompanying file LICENSE_1_0.txt or copy at
7 // http://www.boost.org/LICENSE_1_0.txt)
9 // See http://www.boost.org/libs/interprocess for documentation.
11 //////////////////////////////////////////////////////////////////////////////
13 #ifndef BOOST_INTERPROCESS_DETAIL_MIN_MAX_HPP
14 #define BOOST_INTERPROCESS_DETAIL_MIN_MAX_HPP
16 #if (defined _MSC_VER) && (_MSC_VER >= 1200)
20 #include <boost/interprocess/detail/config_begin.hpp>
21 #include <boost/interprocess/detail/workaround.hpp>
24 namespace interprocess
{
27 const T
&max_value(const T
&a
, const T
&b
)
28 { return a
> b
? a
: b
; }
31 const T
&min_value(const T
&a
, const T
&b
)
32 { return a
< b
? a
: b
; }
34 } //namespace interprocess {
37 #include <boost/interprocess/detail/config_end.hpp>
39 #endif //#ifndef BOOST_INTERPROCESS_DETAIL_MIN_MAX_HPP