//===-------------------------- bind.cpp ----------------------------------===//1//2// The LLVM Compiler Infrastructure3//4// This file is dual licensed under the MIT and the University of Illinois Open5// Source Licenses. See LICENSE.TXT for details.6//7//===----------------------------------------------------------------------===//89#include "functional"1011_LIBCPP_BEGIN_NAMESPACE_STD1213namespace placeholders14{1516const __ph<1> _1{};17const __ph<2> _2{};18const __ph<3> _3{};19const __ph<4> _4{};20const __ph<5> _5{};21const __ph<6> _6{};22const __ph<7> _7{};23const __ph<8> _8{};24const __ph<9> _9{};25const __ph<10> _10{};2627} // placeholders2829_LIBCPP_END_NAMESPACE_STD303132