summaryrefslogtreecommitdiff
path: root/gr-digital/lib/symbol_sync_cc_impl.h
diff options
context:
space:
mode:
authorThomas Habets <thomas@habets.se>2019-12-21 17:38:45 +0000
committerMartin Braun <martin.braun@ettus.com>2020-01-06 15:38:02 -0800
commitb1afefa6b2f95cd1da9cf7736df8416f3654f79e (patch)
tree70eefa6596d68ec691cdd8154c7e40fd5d0ff109 /gr-digital/lib/symbol_sync_cc_impl.h
parent911844e77970401069e503ac6c447878778f81ae (diff)
gr-digital/symbol_sync: More const
Diffstat (limited to 'gr-digital/lib/symbol_sync_cc_impl.h')
-rw-r--r--gr-digital/lib/symbol_sync_cc_impl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-digital/lib/symbol_sync_cc_impl.h b/gr-digital/lib/symbol_sync_cc_impl.h
index e203db2a39..c6893b8789 100644
--- a/gr-digital/lib/symbol_sync_cc_impl.h
+++ b/gr-digital/lib/symbol_sync_cc_impl.h
@@ -102,15 +102,15 @@ private:
float d_avg_clock_period;
// Block output
- float d_osps;
- int d_osps_n;
+ const float d_osps;
+ const int d_osps_n;
// Tag Propagation and Symbol Clock Tracking Reset/Resync
uint64_t d_filter_delay; // interpolator filter delay
std::vector<tag_t> d_tags;
std::vector<tag_t> d_new_tags;
- pmt::pmt_t d_time_est_key;
- pmt::pmt_t d_clock_est_key;
+ const pmt::pmt_t d_time_est_key;
+ const pmt::pmt_t d_clock_est_key;
// Optional Diagnostic Outputs
int d_noutputs;