2013-10-05 13:35:26 +09:00
|
|
|
/*=============================================================================
|
2015-03-31 20:05:32 +09:00
|
|
|
Copyright (c) 2011 RiSK (sscrisk)
|
|
|
|
https://github.com/sscrisk/CEL---ConstExpr-Library
|
|
|
|
|
2015-01-10 19:13:57 +09:00
|
|
|
Copyright (c) 2011-2015 Bolero MURAKAMI
|
2013-10-05 13:35:26 +09:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
|
|
|
#ifndef SPROUT_ALGORITHM_DETAIL_MAX_HPP
|
|
|
|
#define SPROUT_ALGORITHM_DETAIL_MAX_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
|
|
|
|
// 25.4.7 Minimum and maximum
|
|
|
|
template<typename T, typename Compare>
|
|
|
|
inline SPROUT_CONSTEXPR T const&
|
|
|
|
max(T const& a, T const& b, Compare comp) {
|
|
|
|
return comp(a, b) ? b : a;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
inline SPROUT_CONSTEXPR T const&
|
|
|
|
max(T const& a, T const& b) {
|
|
|
|
return sprout::max(a, b, NS_SSCRISK_CEL_OR_SPROUT::less<T>());
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_DETAIL_MAX_HPP
|