diff options
Diffstat (limited to 'gr-blocks/include/gnuradio/blocks/or_blk.h')
-rw-r--r-- | gr-blocks/include/gnuradio/blocks/or_blk.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/or_blk.h b/gr-blocks/include/gnuradio/blocks/or_blk.h index c263b30e46..12ebe5e538 100644 --- a/gr-blocks/include/gnuradio/blocks/or_blk.h +++ b/gr-blocks/include/gnuradio/blocks/or_blk.h @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2012,2018 Free Software Foundation, Inc. + * Copyright 2012,2018,2020 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -13,6 +13,7 @@ #include <gnuradio/blocks/api.h> #include <gnuradio/sync_block.h> +#include <cstdint> namespace gr { namespace blocks { @@ -33,9 +34,9 @@ public: static sptr make(size_t vlen = 1); }; -typedef or_blk<short> or_ss; -typedef or_blk<int> or_ii; -typedef or_blk<char> or_bb; +typedef or_blk<std::uint8_t> or_bb; +typedef or_blk<std::int16_t> or_ss; +typedef or_blk<std::int32_t> or_ii; } /* namespace blocks */ } /* namespace gr */ |