xref: /llvm-project-15.0.7/libcxx/src/bind.cpp (revision bbb0f2c7)
1eb8650a7SLouis Dionne //===----------------------------------------------------------------------===//
23e519524SHoward Hinnant //
357b08b09SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
457b08b09SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
557b08b09SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
63e519524SHoward Hinnant //
73e519524SHoward Hinnant //===----------------------------------------------------------------------===//
83e519524SHoward Hinnant 
9*bbb0f2c7SArthur O'Dwyer #include <functional>
103e519524SHoward Hinnant 
113e519524SHoward Hinnant _LIBCPP_BEGIN_NAMESPACE_STD
123e519524SHoward Hinnant 
133e519524SHoward Hinnant namespace placeholders
143e519524SHoward Hinnant {
153e519524SHoward Hinnant 
1655533071SEric Fiselier const __ph<1>   _1{};
1755533071SEric Fiselier const __ph<2>   _2{};
1855533071SEric Fiselier const __ph<3>   _3{};
1955533071SEric Fiselier const __ph<4>   _4{};
2055533071SEric Fiselier const __ph<5>   _5{};
2155533071SEric Fiselier const __ph<6>   _6{};
2255533071SEric Fiselier const __ph<7>   _7{};
2355533071SEric Fiselier const __ph<8>   _8{};
2455533071SEric Fiselier const __ph<9>   _9{};
2555533071SEric Fiselier const __ph<10> _10{};
263e519524SHoward Hinnant 
273e519524SHoward Hinnant }  // placeholders
283e519524SHoward Hinnant 
293e519524SHoward Hinnant _LIBCPP_END_NAMESPACE_STD
30