Implement the default searcher for std::experimental::search.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@242682 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2015-07-20 16:39:28 +00:00
parent 166dadbcbe
commit bbe4245e63
8 changed files with 538 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03, c++11
// <experimental/functional>
//
// has to include <functional>
#include <experimental/functional>
int main()
{
std::function<int(int)> x;
}