diff options
author | Josh Blum <josh@joshknows.com> | 2012-10-08 00:32:21 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2012-10-13 11:50:12 -0700 |
commit | a3dfc8b6193b316c95125aafa5c9de1fcf1b6fe3 (patch) | |
tree | 59efeac0ffccbb8c319b6e5c65ca813f5218fca1 | |
parent | d2048cb7c850f35ecca85596515363361ccd8f12 (diff) |
core: fix several tag includes throughout core
Techinically this include should be the tags header which
brings in the pmt *and* the tags struct definition.
This happens to be working because the struct definition
is implicitly included by the gr_block* and subclass headers.
-rw-r--r-- | gnuradio-core/src/lib/general/gr_annotator_raw.h | 2 | ||||
-rw-r--r-- | gnuradio-core/src/lib/general/gr_annotator_raw.i | 2 | ||||
-rw-r--r-- | gnuradio-core/src/lib/runtime/qa_block_tags.cc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gnuradio-core/src/lib/general/gr_annotator_raw.h b/gnuradio-core/src/lib/general/gr_annotator_raw.h index 8a6c3f6c02..02d0619081 100644 --- a/gnuradio-core/src/lib/general/gr_annotator_raw.h +++ b/gnuradio-core/src/lib/general/gr_annotator_raw.h @@ -25,7 +25,7 @@ #include <gr_core_api.h> #include <gr_sync_block.h> -#include <gruel/pmt.h> +#include <gr_tags.h> #include <gruel/thread.h> class gr_annotator_raw; diff --git a/gnuradio-core/src/lib/general/gr_annotator_raw.i b/gnuradio-core/src/lib/general/gr_annotator_raw.i index 85777ef5d4..4a58fe7c79 100644 --- a/gnuradio-core/src/lib/general/gr_annotator_raw.i +++ b/gnuradio-core/src/lib/general/gr_annotator_raw.i @@ -22,5 +22,5 @@ GR_SWIG_BLOCK_MAGIC(gr,annotator_raw); -%include <pmt_swig.i> +%include <gr_tags.i> %include <gr_annotator_raw.h> diff --git a/gnuradio-core/src/lib/runtime/qa_block_tags.cc b/gnuradio-core/src/lib/runtime/qa_block_tags.cc index 4fa0a03232..d6b1065e32 100644 --- a/gnuradio-core/src/lib/runtime/qa_block_tags.cc +++ b/gnuradio-core/src/lib/runtime/qa_block_tags.cc @@ -33,7 +33,7 @@ #include <gr_annotator_1to1.h> #include <gr_keep_one_in_n.h> #include <gr_firdes.h> -#include <gruel/pmt.h> +#include <gr_tags.h> // ---------------------------------------------------------------- |