summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/packed_to_unpacked_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/lib/packed_to_unpacked_impl.h')
-rw-r--r--gr-blocks/lib/packed_to_unpacked_impl.h4
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 8d56be3f17..e49f02fa0e 100644
--- a/gr-blocks/lib/packed_to_unpacked_impl.h
+++ b/gr-blocks/lib/packed_to_unpacked_impl.h
@@ -34,8 +34,8 @@ template <class T>
class packed_to_unpacked_impl : public packed_to_unpacked<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;
const unsigned int d_log2_l_type = log2_const<sizeof(T) * 8>();