Add experimental container alias templates for PMRs

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@268841 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier
2016-05-07 03:09:55 +00:00
parent 33861da4f5
commit dba23b499b
30 changed files with 1346 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
//===----------------------------------------------------------------------===//
//
// 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
// <experimental/deque>
#include <experimental/deque>
#ifndef _LIBCPP_VERSION
#error header must provide _LIBCPP_VERSION
#endif
int main()
{
}

View File

@@ -0,0 +1,22 @@
//===----------------------------------------------------------------------===//
//
// 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
// <experimental/forward_list>
#include <experimental/forward_list>
#ifndef _LIBCPP_VERSION
#error header must provide _LIBCPP_VERSION
#endif
int main()
{
}

View File

@@ -0,0 +1,22 @@
//===----------------------------------------------------------------------===//
//
// 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
// <experimental/list>
#include <experimental/list>
#ifndef _LIBCPP_VERSION
#error header must provide _LIBCPP_VERSION
#endif
int main()
{
}

View File

@@ -0,0 +1,22 @@
//===----------------------------------------------------------------------===//
//
// 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
// <experimental/map>
#include <experimental/map>
#ifndef _LIBCPP_VERSION
#error header must provide _LIBCPP_VERSION
#endif
int main()
{
}

View File

@@ -0,0 +1,22 @@
//===----------------------------------------------------------------------===//
//
// 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
// <experimental/regex>
#include <experimental/regex>
#ifndef _LIBCPP_VERSION
#error header must provide _LIBCPP_VERSION
#endif
int main()
{
}

View File

@@ -0,0 +1,22 @@
//===----------------------------------------------------------------------===//
//
// 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
// <experimental/set>
#include <experimental/set>
#ifndef _LIBCPP_VERSION
#error header must provide _LIBCPP_VERSION
#endif
int main()
{
}

View File

@@ -0,0 +1,22 @@
//===----------------------------------------------------------------------===//
//
// 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
// <experimental/string>
#include <experimental/string>
#ifndef _LIBCPP_VERSION
#error header must provide _LIBCPP_VERSION
#endif
int main()
{
}

View File

@@ -0,0 +1,22 @@
//===----------------------------------------------------------------------===//
//
// 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
// <experimental/unordered_map>
#include <experimental/unordered_map>
#ifndef _LIBCPP_VERSION
#error header must provide _LIBCPP_VERSION
#endif
int main()
{
}

View File

@@ -0,0 +1,22 @@
//===----------------------------------------------------------------------===//
//
// 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
// <experimental/unordered_set>
#include <experimental/unordered_set>
#ifndef _LIBCPP_VERSION
#error header must provide _LIBCPP_VERSION
#endif
int main()
{
}

View File

@@ -0,0 +1,22 @@
//===----------------------------------------------------------------------===//
//
// 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
// <experimental/vector>
#include <experimental/vector>
#ifndef _LIBCPP_VERSION
#error header must provide _LIBCPP_VERSION
#endif
int main()
{
}