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