diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2021-08-15 18:49:06 +0200 |
---|---|---|
committer | Martin Braun <martin@gnuradio.org> | 2021-09-07 06:46:35 -0700 |
commit | 3eb08389106e29354ba3de4827c632373664f909 (patch) | |
tree | f0830e715c9cc97ac52f617cc3e762558ffcc795 /gr-blocks | |
parent | 0a7719d70880478ac2e617fff355a6d7fd838bcb (diff) |
IWYU: iomanip, iostream, sstream
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
Diffstat (limited to 'gr-blocks')
-rw-r--r-- | gr-blocks/lib/message_debug_impl.cc | 3 | ||||
-rw-r--r-- | gr-blocks/lib/tag_debug_impl.cc | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gr-blocks/lib/message_debug_impl.cc b/gr-blocks/lib/message_debug_impl.cc index d7bfd7edc2..4795015b1c 100644 --- a/gr-blocks/lib/message_debug_impl.cc +++ b/gr-blocks/lib/message_debug_impl.cc @@ -14,8 +14,9 @@ #include "message_debug_impl.h" #include <gnuradio/io_signature.h> -#include <cstdio> +#include <iomanip> #include <iostream> +#include <sstream> namespace gr { namespace blocks { diff --git a/gr-blocks/lib/tag_debug_impl.cc b/gr-blocks/lib/tag_debug_impl.cc index 1f4475335c..4279cbe391 100644 --- a/gr-blocks/lib/tag_debug_impl.cc +++ b/gr-blocks/lib/tag_debug_impl.cc @@ -14,7 +14,9 @@ #include "tag_debug_impl.h" #include <gnuradio/io_signature.h> +#include <iomanip> #include <iostream> +#include <sstream> namespace gr { namespace blocks { |