diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-06-26 15:19:02 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-06-26 15:19:02 -0400 |
commit | 18262de17b8764d0f159eb517ff21cd6a7ee06a8 (patch) | |
tree | ea9cf8b12140255ca9a41ea3de262c0342920564 | |
parent | 174c966ac9bb371ac306202cb5a9a01b06cbf9c6 (diff) | |
parent | 6e40376272283f6fb7ef105f024ed076938dfdcb (diff) |
Merge branch 'maint'
-rw-r--r-- | gnuradio-runtime/include/gnuradio/tag_checker.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnuradio-runtime/include/gnuradio/tag_checker.h b/gnuradio-runtime/include/gnuradio/tag_checker.h index a5616b2f1d..71f5ff7042 100644 --- a/gnuradio-runtime/include/gnuradio/tag_checker.h +++ b/gnuradio-runtime/include/gnuradio/tag_checker.h @@ -33,13 +33,13 @@ namespace gr { private: std::vector<tag_t> d_tags; tag_t d_next_tag; - unsigned int d_next_tag_index; bool d_has_next_tag; + unsigned int d_next_tag_index; public: tag_checker(std::vector<tag_t> &tags): - d_has_next_tag(false), - d_next_tag_index(0) + d_has_next_tag(false), + d_next_tag_index(0) { d_tags = tags; std::sort(d_tags.begin(), d_tags.end(), &gr::tag_t::offset_compare); |