e3d2082b35
commit e37c110
("package/gnuradio: bump version to 3.10.4.0")
included two numbered patches. Those are generating
"make check-package" warnings.
Fixes:
make check-package
package/gnuradio/0001-blocks-Including-missing-vector-in-blockinterleaver.patch:4: generate your patches with 'git format-patch -N'
package/gnuradio/0002-blocks-blockinterleaving.h-add-missing-cstddef-heade.patch:4: generate your patches with 'git format-patch -N'
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
43 lines
1.4 KiB
Diff
43 lines
1.4 KiB
Diff
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
|
|
Subject: [PATCH] blocks: Including missing <vector> in blockinterleaver.
|
|
|
|
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
|
|
|