diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2016-07-26 14:28:34 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2016-07-26 14:28:34 +0000 |
commit | ab581e79aa3ee4cdbcb30b9c5a76ff4e40281365 (patch) | |
tree | 7157af74800e0fd1aad83a8c0f8ba84ee7eb259d /libcxx/test/std/experimental/numeric/numeric.ops.overview | |
parent | 3b4682f6ba97465372470a3c751f370cb0e0a31a (diff) | |
download | bcm5719-llvm-ab581e79aa3ee4cdbcb30b9c5a76ff4e40281365.tar.gz bcm5719-llvm-ab581e79aa3ee4cdbcb30b9c5a76ff4e40281365.zip |
Implement LCM and GCD for Library Fundamentals. Reviewed as https://reviews.llvm.org/D21343.
llvm-svn: 276750
Diffstat (limited to 'libcxx/test/std/experimental/numeric/numeric.ops.overview')
-rw-r--r-- | libcxx/test/std/experimental/numeric/numeric.ops.overview/nothing_to_do.pass.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libcxx/test/std/experimental/numeric/numeric.ops.overview/nothing_to_do.pass.cpp b/libcxx/test/std/experimental/numeric/numeric.ops.overview/nothing_to_do.pass.cpp new file mode 100644 index 00000000000..7b2527f22bf --- /dev/null +++ b/libcxx/test/std/experimental/numeric/numeric.ops.overview/nothing_to_do.pass.cpp @@ -0,0 +1,15 @@ +//===----------------------------------------------------------------------===// +// +// 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 +// <numeric> + +#include <experimental/numeric> + +int main () {} |