diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2018-02-01 15:49:27 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2018-02-01 15:49:27 +0000 |
commit | 91af9048b26b02b82b4eee637dabb6c81e275905 (patch) | |
tree | dbca05db39f7b46d73d3b548672526a9faa2d660 /libcxx/test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp | |
parent | 7ae53e8c707dae10f2fa3ec966572e438b1a907c (diff) | |
download | bcm5719-llvm-91af9048b26b02b82b4eee637dabb6c81e275905.tar.gz bcm5719-llvm-91af9048b26b02b82b4eee637dabb6c81e275905.zip |
Remove <experimental/numeric>; use <numeric> instead. See https://libcxx.llvm.org/TS_deprecation.html
llvm-svn: 323975
Diffstat (limited to 'libcxx/test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp')
-rw-r--r-- | libcxx/test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/libcxx/test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp b/libcxx/test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp deleted file mode 100644 index d5731870eb1..00000000000 --- a/libcxx/test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp +++ /dev/null @@ -1,24 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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> - -// template<class _M, class _N> -// constexpr common_type_t<_M,_N> lcm(_M __m, _N __n) - -// Remarks: If either M or N is not an integer type, the program is ill-formed. - -#include <experimental/numeric> - - -int main() -{ - std::experimental::lcm(4, 6.0); -} |