summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/numerics/bit/bitops.count/countr_one.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/std/numerics/bit/bitops.count/countr_one.pass.cpp')
-rw-r--r--libcxx/test/std/numerics/bit/bitops.count/countr_one.pass.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/numerics/bit/bitops.count/countr_one.pass.cpp b/libcxx/test/std/numerics/bit/bitops.count/countr_one.pass.cpp
index 96d1a93af3f..1bc1db3fa00 100644
--- a/libcxx/test/std/numerics/bit/bitops.count/countr_one.pass.cpp
+++ b/libcxx/test/std/numerics/bit/bitops.count/countr_one.pass.cpp
@@ -52,7 +52,7 @@ void runtime_test()
{
ASSERT_SAME_TYPE(int, decltype(std::countr_one(T(0))));
ASSERT_NOEXCEPT( std::countr_one(T(0)));
-
+
assert( std::countr_one(T(121)) == 1);
assert( std::countr_one(T(122)) == 0);
assert( std::countr_one(T(123)) == 2);
@@ -67,7 +67,7 @@ void runtime_test()
int main()
{
-
+
{
auto lambda = [](auto x) -> decltype(std::countr_one(x)) {};
using L = decltype(lambda);
OpenPOWER on IntegriCloud