Change the pmt::to_float() to pmt::to_double() for compatibility

This commit is contained in:
Manolis Surligas 2016-05-09 20:56:44 +03:00
parent 5e1667ff9a
commit 76c28b0b21
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ namespace gr
cw_to_symbol_impl::set_act_threshold_msg_handler (pmt::pmt_t msg)
{
if(pmt::is_pair(msg)){
set_act_threshold(pmt::to_float(pmt::cdr(msg)));
set_act_threshold(pmt::to_double(pmt::cdr(msg)));
}
}