diff options
Diffstat (limited to 'gr-blocks/lib/transcendental_impl.cc')
-rw-r--r-- | gr-blocks/lib/transcendental_impl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/lib/transcendental_impl.cc b/gr-blocks/lib/transcendental_impl.cc index 5498c2f750..0f39cc460d 100644 --- a/gr-blocks/lib/transcendental_impl.cc +++ b/gr-blocks/lib/transcendental_impl.cc @@ -104,8 +104,8 @@ transcendental::sptr transcendental::make(const std::string& name, throw std::runtime_error("could not find transcendental function for " + key); // make a new block with found work function - return gnuradio::get_initial_sptr( - new transcendental_impl(get_map()[key].work_fcn, get_map()[key].io_size)); + return gnuradio::make_block_sptr<transcendental_impl>(get_map()[key].work_fcn, + get_map()[key].io_size); } transcendental_impl::transcendental_impl(const work_fcn_type& work_fcn, |