diff options
| author | Eric Fiselier <eric@efcs.ca> | 2014-12-19 22:21:44 +0000 |
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2014-12-19 22:21:44 +0000 |
| commit | 5459af15f9eaab5e7f28a74a45c811fbcd4e8e60 (patch) | |
| tree | da6fede0de4f20d4b61a86c22cd3bb7fc3f641a9 /libcxx/test/experimental/utilities/meta/version.pass.cpp | |
| parent | 93acac6cfcc935d95f0941b181d903a595920e70 (diff) | |
| download | bcm5719-llvm-5459af15f9eaab5e7f28a74a45c811fbcd4e8e60.tar.gz bcm5719-llvm-5459af15f9eaab5e7f28a74a45c811fbcd4e8e60.zip | |
[libcxx] Add <experimental/type_traits> for LFTS
Summary:
This adds the <experimental/type_traits> (minus invocation traits). Mostly just the `_v` traits.
Reviewers: K-ballo, mclow.lists
Reviewed By: mclow.lists
Subscribers: cfe-commits
Differential Revision: http://reviews.llvm.org/D5742
llvm-svn: 224626
Diffstat (limited to 'libcxx/test/experimental/utilities/meta/version.pass.cpp')
| -rw-r--r-- | libcxx/test/experimental/utilities/meta/version.pass.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libcxx/test/experimental/utilities/meta/version.pass.cpp b/libcxx/test/experimental/utilities/meta/version.pass.cpp new file mode 100644 index 00000000000..593fb52a4c3 --- /dev/null +++ b/libcxx/test/experimental/utilities/meta/version.pass.cpp @@ -0,0 +1,20 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// <experimental/type_traits> + +#include <experimental/type_traits> + +#ifndef _LIBCPP_VERSION +#error _LIBCPP_VERSION not defined +#endif + +int main() +{ +} |

