summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib/pmt/pmt_int.h
diff options
context:
space:
mode:
authorJosh Morman <jmorman@gnuradio.org>2021-11-04 14:27:50 -0400
committermormj <34754695+mormj@users.noreply.github.com>2021-11-06 08:24:32 -0400
commit535bac6bc2409c3cf9e70c0fb62a7f789a5ec6fc (patch)
tree6505d6322e6c8afa66fe901f879af48d049b2a34 /gnuradio-runtime/lib/pmt/pmt_int.h
parent9b150efbc8a8458d9ed192daed34a7ff4e2948a0 (diff)
Revert "Replace boost::any with std::any"
This reverts commit ccd28dfbb1504fdc29db267acd8aa3354fe10cd2.
Diffstat (limited to 'gnuradio-runtime/lib/pmt/pmt_int.h')
-rw-r--r--gnuradio-runtime/lib/pmt/pmt_int.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnuradio-runtime/lib/pmt/pmt_int.h b/gnuradio-runtime/lib/pmt/pmt_int.h
index 1c4b149a49..7aadefe4d7 100644
--- a/gnuradio-runtime/lib/pmt/pmt_int.h
+++ b/gnuradio-runtime/lib/pmt/pmt_int.h
@@ -11,7 +11,7 @@
#define INCLUDED_PMT_INT_H
#include <pmt/pmt.h>
-#include <any>
+#include <boost/any.hpp>
/*
* EVERYTHING IN THIS FILE IS PRIVATE TO THE IMPLEMENTATION!
@@ -170,15 +170,15 @@ public:
class pmt_any : public pmt_base
{
- std::any d_any;
+ boost::any d_any;
public:
- pmt_any(const std::any& any);
+ pmt_any(const boost::any& any);
//~pmt_any();
bool is_any() const override { return true; }
- const std::any& ref() const { return d_any; }
- void set(const std::any& any) { d_any = any; }
+ const boost::any& ref() const { return d_any; }
+ void set(const boost::any& any) { d_any = any; }
};