summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/complex_to_interleaved_char_impl.h
diff options
context:
space:
mode:
authorThomas Habets <thomas@habets.se>2020-03-22 16:30:12 +0000
committerMarcus Müller <marcus@hostalia.de>2020-03-26 18:48:07 +0100
commit414a495d639ffb817dd3c04d771719e938f50daf (patch)
tree613c0e70bd0a1a5dce8d16dfdcbe8d0f77d4197f /gr-blocks/lib/complex_to_interleaved_char_impl.h
parentc164d3427036bf57af9751380b731b7cd99a4f4a (diff)
blocks: Add const to member variables that don't change
Diffstat (limited to 'gr-blocks/lib/complex_to_interleaved_char_impl.h')
-rw-r--r--gr-blocks/lib/complex_to_interleaved_char_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/lib/complex_to_interleaved_char_impl.h b/gr-blocks/lib/complex_to_interleaved_char_impl.h
index 2e7e3c68bd..f4502c4b9d 100644
--- a/gr-blocks/lib/complex_to_interleaved_char_impl.h
+++ b/gr-blocks/lib/complex_to_interleaved_char_impl.h
@@ -20,7 +20,7 @@ class BLOCKS_API complex_to_interleaved_char_impl : public complex_to_interleave
{
private:
float d_scalar;
- bool d_vector;
+ const bool d_vector;
public:
complex_to_interleaved_char_impl(bool vector, float scale_factor);