diff options
author | Louis Dionne <ldionne@apple.com> | 2019-10-23 10:40:15 -0700 |
---|---|---|
committer | Louis Dionne <ldionne@apple.com> | 2019-10-23 11:19:19 -0700 |
commit | 6b77ebdc919d9212f50fd353b1da0d84d3815bf3 (patch) | |
tree | 812aad93c9f6fb083eecfb6fc1f4d668b2112dec /libcxx/test/std/numerics/c.math/c.math.lerp | |
parent | 684ebc605e0b7f8782e634e1bb3621a9b0ec674f (diff) | |
download | bcm5719-llvm-6b77ebdc919d9212f50fd353b1da0d84d3815bf3.tar.gz bcm5719-llvm-6b77ebdc919d9212f50fd353b1da0d84d3815bf3.zip |
[NFC] Strip trailing whitespace from libc++
Diffstat (limited to 'libcxx/test/std/numerics/c.math/c.math.lerp')
-rw-r--r-- | libcxx/test/std/numerics/c.math/c.math.lerp/c.math.lerp.pass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/test/std/numerics/c.math/c.math.lerp/c.math.lerp.pass.cpp b/libcxx/test/std/numerics/c.math/c.math.lerp/c.math.lerp.pass.cpp index 2ab41c18225..7d9ceef8b48 100644 --- a/libcxx/test/std/numerics/c.math/c.math.lerp/c.math.lerp.pass.cpp +++ b/libcxx/test/std/numerics/c.math/c.math.lerp/c.math.lerp.pass.cpp @@ -45,7 +45,7 @@ void test() assert((std::lerp(T( 0), T(12), T(1)) == T(12))); assert((std::lerp(T(12), T( 0), T(0)) == T(12))); assert((std::lerp(T(12), T( 0), T(1)) == T(0))); - + assert((std::lerp(T( 0), T(12), T(0.5)) == T(6))); assert((std::lerp(T(12), T( 0), T(0.5)) == T(6))); assert((std::lerp(T( 0), T(12), T(2)) == T(24))); @@ -66,10 +66,10 @@ int main(int, char**) static_assert(constexpr_test<float>(), ""); static_assert(constexpr_test<double>(), ""); static_assert(constexpr_test<long double>(), ""); - + test<float>(); test<double>(); test<long double>(); - + return 0; } |