diff options
author | Josh Morman <jmorman@gnuradio.org> | 2021-11-04 14:27:50 -0400 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-11-06 08:24:32 -0400 |
commit | 535bac6bc2409c3cf9e70c0fb62a7f789a5ec6fc (patch) | |
tree | 6505d6322e6c8afa66fe901f879af48d049b2a34 /gr-digital/include | |
parent | 9b150efbc8a8458d9ed192daed34a7ff4e2948a0 (diff) |
Revert "Replace boost::any with std::any"
This reverts commit ccd28dfbb1504fdc29db267acd8aa3354fe10cd2.
Diffstat (limited to 'gr-digital/include')
-rw-r--r-- | gr-digital/include/gnuradio/digital/constellation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-digital/include/gnuradio/digital/constellation.h b/gr-digital/include/gnuradio/digital/constellation.h index 037075f2bb..d6d39353d8 100644 --- a/gr-digital/include/gnuradio/digital/constellation.h +++ b/gr-digital/include/gnuradio/digital/constellation.h @@ -15,7 +15,7 @@ #include <gnuradio/digital/metric_type.h> #include <gnuradio/gr_complex.h> #include <pmt/pmt.h> -#include <any> +#include <boost/any.hpp> #include <vector> namespace gr { @@ -113,7 +113,7 @@ public: constellation_sptr base() { return shared_from_this(); } - pmt::pmt_t as_pmt() { return pmt::make_any(std::any(base())); } + pmt::pmt_t as_pmt() { return pmt::make_any(boost::any(base())); } /*! \brief Generates the soft decision LUT based on * constellation and symbol map. |