diff options
author | Thomas Habets <thomas@habets.se> | 2019-12-21 19:22:20 +0000 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2020-01-06 15:38:02 -0800 |
commit | c7f95a96b93baccb6c92795fc1d261789b4f21a6 (patch) | |
tree | 0510426f791fc86ceeda7f2b3bdbec7d943ff29f /gr-blocks/lib/packed_to_unpacked_impl.h | |
parent | 2c2c65656197596b8455ae0813c3c80cea023406 (diff) |
gr-blocks/packed&unpacked: More constexpr
Diffstat (limited to 'gr-blocks/lib/packed_to_unpacked_impl.h')
-rw-r--r-- | gr-blocks/lib/packed_to_unpacked_impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/lib/packed_to_unpacked_impl.h b/gr-blocks/lib/packed_to_unpacked_impl.h index e49f02fa0e..26667680d1 100644 --- a/gr-blocks/lib/packed_to_unpacked_impl.h +++ b/gr-blocks/lib/packed_to_unpacked_impl.h @@ -37,8 +37,8 @@ private: const unsigned int d_bits_per_chunk; const endianness_t d_endianness; unsigned int d_index; - const unsigned int d_bits_per_type = sizeof(T) * 8; - const unsigned int d_log2_l_type = log2_const<sizeof(T) * 8>(); + static constexpr unsigned int d_bits_per_type = sizeof(T) * 8; + static constexpr unsigned int d_log2_l_type = log2_const<sizeof(T) * 8>(); unsigned int get_bit_le(const T* in_vector, unsigned int bit_addr); unsigned int get_bit_be(const T* in_vector, unsigned int bit_addr); |