diff options
Diffstat (limited to 'gnuradio-runtime/swig/block.i')
-rw-r--r-- | gnuradio-runtime/swig/block.i | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/swig/block.i b/gnuradio-runtime/swig/block.i index d931f505e9..fb21dd1447 100644 --- a/gnuradio-runtime/swig/block.i +++ b/gnuradio-runtime/swig/block.i @@ -11,8 +11,8 @@ %include <basic_block.i> class gr::block; -typedef boost::shared_ptr<gr::block> gr::block_sptr; -%template(block_sptr) boost::shared_ptr<gr::block>; +typedef std::shared_ptr<gr::block> gr::block_sptr; +%template(block_sptr) std::shared_ptr<gr::block>; // support vectors of these... namespace std { |