1 //===-------------------------- bind.cpp ----------------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is dual licensed under the MIT and the University of Illinois Open 6 // Source Licenses. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #define _LIBCPP_BUILDING_BIND 11 #include "functional" 12 13 _LIBCPP_BEGIN_NAMESPACE_STD 14 15 namespace placeholders 16 { 17 18 const __ph<1> _1{}; 19 const __ph<2> _2{}; 20 const __ph<3> _3{}; 21 const __ph<4> _4{}; 22 const __ph<5> _5{}; 23 const __ph<6> _6{}; 24 const __ph<7> _7{}; 25 const __ph<8> _8{}; 26 const __ph<9> _9{}; 27 const __ph<10> _10{}; 28 29 } // placeholders 30 31 _LIBCPP_END_NAMESPACE_STD 32