We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While installing the OOT block in GNURadio I am getting the following issue
$PATH/gr-dpd/lib/MP_model_PA_impl.cc: In static member function ‘static gr::dpd::MP_model_PA::sptr gr::dpd::MP_model_PA::make(int, int, std::string, const std::vector<std::complex<float> >&)’: $PATH/gr-dpd/lib/MP_model_PA_impl.cc:57:38: error: could not convert ‘gnuradio::get_initial_sptr(T*) [with T = gr::dpd::MP_model_PA_impl]()’ from ‘std::shared_ptr<gr::dpd::MP_model_PA_impl>’ to ‘gr::dpd::MP_model_PA::sptr’ {aka ‘boost::shared_ptr<gr::dpd::MP_model_PA>’} 57 | return gnuradio::get_initial_sptr( | ~~~~~~~~~~~~~~~~~~~~~~~~~~^ | | | std::shared_ptr<gr::dpd::MP_model_PA_impl> 58 | new MP_model_PA_impl(Order, Mem_Depth, Mode, Coeff)); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ make[2]: *** [lib/CMakeFiles/gnuradio-dpd.dir/build.make:76: lib/CMakeFiles/gnuradio-dpd.dir/MP_model_PA_impl.cc.o] Error 1 make[1]: *** [CMakeFiles/Makefile2:248: lib/CMakeFiles/gnuradio-dpd.dir/all] Error 2 make: *** [Makefile:146: all] Error 2
A basic look suggests that sptr belongs to the boost namespace instead of the gnuradio or std namespace.
sptr
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While installing the OOT block in GNURadio I am getting the following issue
A basic look suggests that
sptr
belongs to the boost namespace instead of the gnuradio or std namespace.The text was updated successfully, but these errors were encountered: