diff options
author | Thomas Habets <thomas@habets.se> | 2020-03-22 16:30:12 +0000 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2020-03-26 18:48:07 +0100 |
commit | 414a495d639ffb817dd3c04d771719e938f50daf (patch) | |
tree | 613c0e70bd0a1a5dce8d16dfdcbe8d0f77d4197f /gr-blocks/lib/udp_source_impl.h | |
parent | c164d3427036bf57af9751380b731b7cd99a4f4a (diff) |
blocks: Add const to member variables that don't change
Diffstat (limited to 'gr-blocks/lib/udp_source_impl.h')
-rw-r--r-- | gr-blocks/lib/udp_source_impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/lib/udp_source_impl.h b/gr-blocks/lib/udp_source_impl.h index d4d151b3df..36d4e2b199 100644 --- a/gr-blocks/lib/udp_source_impl.h +++ b/gr-blocks/lib/udp_source_impl.h @@ -22,9 +22,9 @@ namespace blocks { class udp_source_impl : public udp_source { private: - size_t d_itemsize; + const size_t d_itemsize; int d_payload_size; // maximum transmission unit (packet length) - bool d_eof; // look for an EOF signal + const bool d_eof; // look for an EOF signal bool d_connected; // are we connected? char* d_rxbuf; // get UDP buffer items char* d_residbuf; // hold buffer between calls |