From 264e24ea87fb9d529f65f0e1e09fc6c3a93db3c9 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sat, 13 Jan 2024 10:43:58 +0100 Subject: fix typo --- serialize/packbits.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'serialize/packbits.cpp') diff --git a/serialize/packbits.cpp b/serialize/packbits.cpp index afa20d7e..4623d0d9 100644 --- a/serialize/packbits.cpp +++ b/serialize/packbits.cpp @@ -9,7 +9,7 @@ namespace { constexpr bool test1() { - constexpr size_t bits[] = { 5, 2, 1, 0 }; + constexpr size_t bits[] = { 5, 2, 1 }; constexpr size_t vals[] = { 8, 3, 1, 0 }; constexpr auto S0 = Storage{0b10111011}; @@ -27,10 +27,10 @@ constexpr bool test1() static_assert(std::is_same_v>); static_assert(std::is_same_v>); - static_assert(S0.advance<0>() == S0.value); - static_assert(S0.advance<5>() == S1.value); - static_assert(S1.advance<2>() == S2.value); - static_assert(S2.advance<1>() == S3.value); + static_assert(S0.advance< 0>() == S0.value); + static_assert(S0.advance() == S1.value); + static_assert(S1.advance() == S2.value); + static_assert(S2.advance() == S3.value); static_assert(S0.get() == (S0.value & (1<() == (S1.value & (1<