File Coverage

/usr/local/lib/perl5/site_perl/5.26.1/XS/libboost/mini.x/i/boost/container/detail/min_max.hpp
Criterion Covered Total %
statement 0 4 0.0
branch 0 4 0.0
condition n/a
subroutine n/a
pod n/a
total 0 8 0.0


line stmt bran cond sub pod time code
1             //////////////////////////////////////////////////////////////////////////////
2             //
3             // (C) Copyright Ion Gaztanaga 2005-2013. Distributed under the Boost
4             // Software License, Version 1.0. (See accompanying file
5             // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6             //
7             // See http://www.boost.org/libs/container for documentation.
8             //
9             //////////////////////////////////////////////////////////////////////////////
10             #ifndef BOOST_CONTAINER_DETAIL_MIN_MAX_HPP
11             #define BOOST_CONTAINER_DETAIL_MIN_MAX_HPP
12              
13             #ifndef BOOST_CONFIG_HPP
14             # include
15             #endif
16              
17             #if defined(BOOST_HAS_PRAGMA_ONCE)
18             # pragma once
19             #endif
20              
21             namespace boost {
22             namespace container {
23             namespace dtl {
24              
25             template
26 0           const T &max_value(const T &a, const T &b)
27 0 0         { return a > b ? a : b; }
28              
29             template
30 0           const T &min_value(const T &a, const T &b)
31 0 0         { return a < b ? a : b; }
32              
33             } //namespace dtl {
34             } //namespace container {
35             } //namespace boost {
36              
37             #endif //#ifndef BOOST_CONTAINER_DETAIL_MIN_MAX_HPP