summaryrefslogtreecommitdiff
path: root/gr-channels/lib/channel_model_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-channels/lib/channel_model_impl.cc')
-rw-r--r--gr-channels/lib/channel_model_impl.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-channels/lib/channel_model_impl.cc b/gr-channels/lib/channel_model_impl.cc
index 5b5586c1bd..a9ed06eb53 100644
--- a/gr-channels/lib/channel_model_impl.cc
+++ b/gr-channels/lib/channel_model_impl.cc
@@ -61,12 +61,12 @@ namespace gr {
d_multipath = filter::fir_filter_ccc::make(1, d_taps);
- d_noise_adder = gr_make_add_cc();
+ d_noise_adder = blocks::add_cc::make();
d_noise = analog::noise_source_c::make(analog::GR_GAUSSIAN,
noise_voltage, noise_seed);
d_freq_offset = analog::sig_source_c::make(1, analog::GR_SIN_WAVE,
frequency_offset, 1.0, 0.0);
- d_mixer_offset = gr_make_multiply_cc();
+ d_mixer_offset = blocks::multiply_cc::make();
connect(self(), 0, d_timing_offset, 0);
connect(d_timing_offset, 0, d_multipath, 0);