xref: /freebsd/contrib/llvm-project/libcxx/src/bind.cpp (revision cb14a3fe5122c879eae1fb480ed7ce82a699ddb6)
1349cc55cSDimitry Andric //===----------------------------------------------------------------------===//
20b57cec5SDimitry Andric //
30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60b57cec5SDimitry Andric //
70b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
80b57cec5SDimitry Andric 
981ad6265SDimitry Andric #include <functional>
100b57cec5SDimitry Andric 
110b57cec5SDimitry Andric _LIBCPP_BEGIN_NAMESPACE_STD
120b57cec5SDimitry Andric 
13*cb14a3feSDimitry Andric namespace placeholders {
140b57cec5SDimitry Andric 
150b57cec5SDimitry Andric const __ph<1> _1{};
160b57cec5SDimitry Andric const __ph<2> _2{};
170b57cec5SDimitry Andric const __ph<3> _3{};
180b57cec5SDimitry Andric const __ph<4> _4{};
190b57cec5SDimitry Andric const __ph<5> _5{};
200b57cec5SDimitry Andric const __ph<6> _6{};
210b57cec5SDimitry Andric const __ph<7> _7{};
220b57cec5SDimitry Andric const __ph<8> _8{};
230b57cec5SDimitry Andric const __ph<9> _9{};
240b57cec5SDimitry Andric const __ph<10> _10{};
250b57cec5SDimitry Andric 
26*cb14a3feSDimitry Andric } // namespace placeholders
270b57cec5SDimitry Andric 
280b57cec5SDimitry Andric _LIBCPP_END_NAMESPACE_STD
29