Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(356)

Side by Side Diff: third_party/libcxx/src/bind.cpp

Issue 75213003: Add libc++ and libc++abi to third-party. (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 //===-------------------------- bind.cpp ----------------------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include "functional"
11
12 _LIBCPP_BEGIN_NAMESPACE_STD
13
14 namespace 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
30 _LIBCPP_END_NAMESPACE_STD
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698