2022-10-19 15:43:28 +02:00
|
|
|
From 45fe4ac55ad88b6793d225e676205c30388ec138 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Ryan Volz <ryan.volz@gmail.com>
|
|
|
|
Date: Fri, 16 Sep 2022 21:05:51 -0400
|
2022-11-19 09:41:26 +01:00
|
|
|
Subject: [PATCH] blocks: Including missing <vector> in blockinterleaver.
|
2022-10-19 15:43:28 +02:00
|
|
|
|
|
|
|
Signed-off-by: Ryan Volz <ryan.volz@gmail.com>
|
|
|
|
[Retrieved (and backported) from:
|
|
|
|
https://github.com/gnuradio/gnuradio/commit/463c3477549b26b32d9b73eef30044e97c4eee64]
|
|
|
|
Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
|
|
|
|
---
|
|
|
|
gr-blocks/include/gnuradio/blocks/blockinterleaving.h | 2 +-
|
|
|
|
gr-blocks/lib/blockinterleaving.cc | 1 +
|
|
|
|
2 files changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/gr-blocks/include/gnuradio/blocks/blockinterleaving.h b/gr-blocks/include/gnuradio/blocks/blockinterleaving.h
|
|
|
|
index 9d4e0f249..df831fe5a 100644
|
|
|
|
--- a/gr-blocks/include/gnuradio/blocks/blockinterleaving.h
|
|
|
|
+++ b/gr-blocks/include/gnuradio/blocks/blockinterleaving.h
|
|
|
|
@@ -12,7 +12,7 @@
|
|
|
|
#define INCLUDED_GR_BLOCKS_BLOCKINTERLEAVING_H
|
|
|
|
|
|
|
|
#include <gnuradio/blocks/api.h>
|
|
|
|
-
|
|
|
|
+#include <vector>
|
|
|
|
|
|
|
|
namespace gr {
|
|
|
|
namespace blocks {
|
|
|
|
diff --git a/gr-blocks/lib/blockinterleaving.cc b/gr-blocks/lib/blockinterleaving.cc
|
|
|
|
index fc5873e11..768ad9ea7 100644
|
|
|
|
--- a/gr-blocks/lib/blockinterleaving.cc
|
|
|
|
+++ b/gr-blocks/lib/blockinterleaving.cc
|
|
|
|
@@ -12,6 +12,7 @@
|
|
|
|
#include <spdlog/fmt/fmt.h>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <numeric>
|
|
|
|
+#include <vector>
|
|
|
|
|
|
|
|
namespace gr {
|
|
|
|
namespace blocks {
|
|
|
|
--
|
|
|
|
2.35.1
|
|
|
|
|