• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <boost/config.hpp>
2 
3 #if defined(BOOST_MSVC)
4 #pragma warning(disable: 4786)  // identifier truncated in debug info
5 #pragma warning(disable: 4710)  // function not inlined
6 #pragma warning(disable: 4711)  // function selected for automatic inline expansion
7 #pragma warning(disable: 4514)  // unreferenced inline removed
8 #endif
9 
10 //
11 //  bind_eq2_test.cpp - boost::bind equality operator
12 //
13 //  Copyright (c) 2004, 2005, 2009 Peter Dimov
14 //
15 // Distributed under the Boost Software License, Version 1.0. (See
16 // accompanying file LICENSE_1_0.txt or copy at
17 // http://www.boost.org/LICENSE_1_0.txt)
18 //
19 
20 #include <boost/bind/bind.hpp>
21 #include <boost/function_equal.hpp>
22 #include <boost/core/lightweight_test.hpp>
23 
24 using namespace boost::placeholders;
25 
26 //
27 
f(int)28 void f( int )
29 {
30 }
31 
g(int i)32 int g( int i )
33 {
34     return i + 5;
35 }
36 
test_self_equal(F f)37 template< class F > void test_self_equal( F f )
38 {
39 #ifdef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
40     using boost::function_equal;
41 #endif
42 
43     BOOST_TEST( function_equal( f, f ) );
44 }
45 
main()46 int main()
47 {
48     test_self_equal( boost::bind( f, _1 ) );
49     test_self_equal( boost::bind( g, _1 ) );
50     test_self_equal( boost::bind( f, boost::bind( g, _1 ) ) );
51 
52     return boost::report_errors();
53 }
54