blob: cab0b7c03a9127c90609a5cbe5e4e11b16d87603 [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
10#include "functional"
11
12_LIBCPP_BEGIN_NAMESPACE_STD
13
14namespace placeholders
15{
16
17__ph<1> _1;
18__ph<2> _2;
19__ph<3> _3;
20__ph<4> _4;
21__ph<5> _5;
22__ph<6> _6;
23__ph<7> _7;
24__ph<8> _8;
25__ph<9> _9;
26__ph<10> _10;
27
28} // placeholders
29
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000030_LIBCPP_END_NAMESPACE_STD