fix doc example typo
[boost.git] / boost / interprocess / detail / min_max.hpp
blob2c4f3e76fed30d236f686bcf19e47015ab2d901a
1 //////////////////////////////////////////////////////////////////////////////
2 //
3 // (C) Copyright Ion Gaztanaga 2005-2008.
4 //
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)
8 //
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)
17 # pragma once
18 #endif
20 #include <boost/interprocess/detail/config_begin.hpp>
21 #include <boost/interprocess/detail/workaround.hpp>
23 namespace boost {
24 namespace interprocess {
26 template<class T>
27 const T &max_value(const T &a, const T &b)
28 { return a > b ? a : b; }
30 template<class T>
31 const T &min_value(const T &a, const T &b)
32 { return a < b ? a : b; }
34 } //namespace interprocess {
35 } //namespace boost {
37 #include <boost/interprocess/detail/config_end.hpp>
39 #endif //#ifndef BOOST_INTERPROCESS_DETAIL_MIN_MAX_HPP