xref: /freebsd/contrib/llvm-project/libcxx/src/bind.cpp (revision 0b57cec536236d46e3dba9bd041533462f33dbb7)
1*0b57cec5SDimitry Andric //===-------------------------- bind.cpp ----------------------------------===//
2*0b57cec5SDimitry Andric //
3*0b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*0b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
5*0b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*0b57cec5SDimitry Andric //
7*0b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
8*0b57cec5SDimitry Andric 
9*0b57cec5SDimitry Andric #include "functional"
10*0b57cec5SDimitry Andric 
11*0b57cec5SDimitry Andric _LIBCPP_BEGIN_NAMESPACE_STD
12*0b57cec5SDimitry Andric 
13*0b57cec5SDimitry Andric namespace placeholders
14*0b57cec5SDimitry Andric {
15*0b57cec5SDimitry Andric 
16*0b57cec5SDimitry Andric const __ph<1>   _1{};
17*0b57cec5SDimitry Andric const __ph<2>   _2{};
18*0b57cec5SDimitry Andric const __ph<3>   _3{};
19*0b57cec5SDimitry Andric const __ph<4>   _4{};
20*0b57cec5SDimitry Andric const __ph<5>   _5{};
21*0b57cec5SDimitry Andric const __ph<6>   _6{};
22*0b57cec5SDimitry Andric const __ph<7>   _7{};
23*0b57cec5SDimitry Andric const __ph<8>   _8{};
24*0b57cec5SDimitry Andric const __ph<9>   _9{};
25*0b57cec5SDimitry Andric const __ph<10> _10{};
26*0b57cec5SDimitry Andric 
27*0b57cec5SDimitry Andric }  // placeholders
28*0b57cec5SDimitry Andric 
29*0b57cec5SDimitry Andric _LIBCPP_END_NAMESPACE_STD
30