blob: b4c76ffe6a4dab7cac153ab8179fade4517f92ef [file] [log] [blame]
Howard Hinnantc51e1022010-05-11 19:42:16 +00001//===-------------------------- bind.cpp ----------------------------------===//
2//
Howard Hinnantc566dc32010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantc51e1022010-05-11 19:42:16 +00004//
Howard Hinnantee11c312010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantc51e1022010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10#include "functional"
11
12_LIBCPP_BEGIN_NAMESPACE_STD
13
14namespace placeholders
15{
16
Eric Fiselierb7f51d62016-06-26 21:01:34 +000017const __ph<1> _1{};
18const __ph<2> _2{};
19const __ph<3> _3{};
20const __ph<4> _4{};
21const __ph<5> _5{};
22const __ph<6> _6{};
23const __ph<7> _7{};
24const __ph<8> _8{};
25const __ph<9> _9{};
26const __ph<10> _10{};
Howard Hinnantc51e1022010-05-11 19:42:16 +000027
28} // placeholders
29
Howard Hinnantc51e1022010-05-11 19:42:16 +000030_LIBCPP_END_NAMESPACE_STD