Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | //===-------------------------- bind.cpp ----------------------------------===// |
| 2 | // |
Howard Hinnant | c566dc3 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4 | // |
Howard Hinnant | ee11c31 | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 5 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "functional" |
| 11 | |
| 12 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 13 | |
| 14 | namespace placeholders |
| 15 | { |
| 16 | |
Eric Fiselier | b7f51d6 | 2016-06-26 21:01:34 +0000 | [diff] [blame] | 17 | const __ph<1> _1{}; |
| 18 | const __ph<2> _2{}; |
| 19 | const __ph<3> _3{}; |
| 20 | const __ph<4> _4{}; |
| 21 | const __ph<5> _5{}; |
| 22 | const __ph<6> _6{}; |
| 23 | const __ph<7> _7{}; |
| 24 | const __ph<8> _8{}; |
| 25 | const __ph<9> _9{}; |
| 26 | const __ph<10> _10{}; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 27 | |
| 28 | } // placeholders |
| 29 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 30 | _LIBCPP_END_NAMESPACE_STD |