os/ossrv/ossrv_pub/boost_apis/boost/function_equal.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
//  Copyright Douglas Gregor 2004.
sl@0
     2
//  Copyright 2005 Peter Dimov
sl@0
     3
sl@0
     4
//  Use, modification and distribution is subject to
sl@0
     5
//  the Boost Software License, Version 1.0.
sl@0
     6
//  (See accompanying file LICENSE_1_0.txt or copy at
sl@0
     7
//  http://www.boost.org/LICENSE_1_0.txt)
sl@0
     8
sl@0
     9
// For more information, see http://www.boost.org
sl@0
    10
#ifndef BOOST_FUNCTION_EQUAL_HPP
sl@0
    11
#define BOOST_FUNCTION_EQUAL_HPP
sl@0
    12
sl@0
    13
namespace boost {
sl@0
    14
sl@0
    15
template<typename F, typename G>
sl@0
    16
  bool function_equal_impl(const F& f, const G& g, long)
sl@0
    17
  { return f == g; }
sl@0
    18
sl@0
    19
// function_equal_impl needs to be unqualified to pick
sl@0
    20
// user overloads on two-phase compilers
sl@0
    21
sl@0
    22
template<typename F, typename G>
sl@0
    23
  bool function_equal(const F& f, const G& g)
sl@0
    24
  { return function_equal_impl(f, g, 0); }
sl@0
    25
sl@0
    26
} // end namespace boost
sl@0
    27
sl@0
    28
#endif // BOOST_FUNCTION_EQUAL_HPP