blob: b318fc16979ec2198212eed4eacbf310d6e0147f [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===-------------------------- bind.cpp ----------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
Howard Hinnantb64f8b02010-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 Hinnantbc8d3f92010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
Eric Fiselierabd892a2016-06-26 21:01:34 +000010#define _LIBCPP_BUILDING_BIND
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000011#include "functional"
12
13_LIBCPP_BEGIN_NAMESPACE_STD
14
15namespace placeholders
16{
17
Eric Fiselierabd892a2016-06-26 21:01:34 +000018const __ph<1> _1{};
19const __ph<2> _2{};
20const __ph<3> _3{};
21const __ph<4> _4{};
22const __ph<5> _5{};
23const __ph<6> _6{};
24const __ph<7> _7{};
25const __ph<8> _8{};
26const __ph<9> _9{};
27const __ph<10> _10{};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000028
29} // placeholders
30
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000031_LIBCPP_END_NAMESPACE_STD