diff options
author | Thomas Habets <thomas@habets.se> | 2019-12-21 19:21:30 +0000 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2020-01-06 15:38:02 -0800 |
commit | 2c2c65656197596b8455ae0813c3c80cea023406 (patch) | |
tree | dc7ecaf696acce1ff82a1acb4f2a730365551e51 /gr-blocks/lib/unpacked_to_packed_impl.h | |
parent | b1afefa6b2f95cd1da9cf7736df8416f3654f79e (diff) |
gr-blocks/packed&unpacked: Add const
Diffstat (limited to 'gr-blocks/lib/unpacked_to_packed_impl.h')
-rw-r--r-- | gr-blocks/lib/unpacked_to_packed_impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/lib/unpacked_to_packed_impl.h b/gr-blocks/lib/unpacked_to_packed_impl.h index daa2ba6949..50398aee8c 100644 --- a/gr-blocks/lib/unpacked_to_packed_impl.h +++ b/gr-blocks/lib/unpacked_to_packed_impl.h @@ -33,8 +33,8 @@ template <class T> class unpacked_to_packed_impl : public unpacked_to_packed<T> { private: - unsigned int d_bits_per_chunk; - endianness_t d_endianness; + 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; unsigned int |