diff options
author | Sebastian Müller <senpo@posteo.de> | 2018-10-20 13:38:47 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2018-11-01 14:22:51 +0100 |
commit | d257a0c3f11c0845d7eda1c2c78b2c32b5ec7c4c (patch) | |
tree | 36b4860505095ec656150fa64851ae4b4ebc5cea /gr-blocks/lib/vector_source_impl.cc | |
parent | 1a1d5a6a13c4cc32bf1fa1e48bda3afa6596dcd1 (diff) |
Change vector length variables to unsigned type
Diffstat (limited to 'gr-blocks/lib/vector_source_impl.cc')
-rw-r--r-- | gr-blocks/lib/vector_source_impl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/lib/vector_source_impl.cc b/gr-blocks/lib/vector_source_impl.cc index fd1ad16981..d49c37f5dd 100644 --- a/gr-blocks/lib/vector_source_impl.cc +++ b/gr-blocks/lib/vector_source_impl.cc @@ -36,7 +36,7 @@ namespace gr { template <class T> typename vector_source<T>::sptr vector_source<T>::make(const std::vector<T> &data, - bool repeat, int vlen, + bool repeat, unsigned int vlen, const std::vector<tag_t> &tags) { return gnuradio::get_initial_sptr @@ -45,7 +45,7 @@ namespace gr { template <class T> vector_source_impl<T> ::vector_source_impl(const std::vector<T> &data, - bool repeat, int vlen, + bool repeat, unsigned int vlen, const std::vector<tag_t> &tags) : sync_block("vector_source", io_signature::make(0, 0, 0), |