diff options
author | Marek Szuba <marecki@gentoo.org> | 2023-04-18 22:47:18 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2023-04-19 08:36:08 +0100 |
commit | 6574eb8312ba566256c38c638308dbc6e31d7f67 (patch) | |
tree | 00d7e1c52d25770ce6e9f44cb034d5cf4576949f /sci-electronics | |
parent | dev-vcs/git-machete: add 3.17.0 (diff) | |
download | gentoo-6574eb8312ba566256c38c638308dbc6e31d7f67.tar.gz gentoo-6574eb8312ba566256c38c638308dbc6e31d7f67.tar.bz2 gentoo-6574eb8312ba566256c38c638308dbc6e31d7f67.zip |
sci-electronics/NanoVNA-QT: add more missing header includes
Closes: https://bugs.gentoo.org/900607
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'sci-electronics')
-rw-r--r-- | sci-electronics/NanoVNA-QT/files/NanoVNA-QT-20200507-missing_headers.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sci-electronics/NanoVNA-QT/files/NanoVNA-QT-20200507-missing_headers.patch b/sci-electronics/NanoVNA-QT/files/NanoVNA-QT-20200507-missing_headers.patch index cebe3c5239fa..d49cef3f53c6 100644 --- a/sci-electronics/NanoVNA-QT/files/NanoVNA-QT-20200507-missing_headers.patch +++ b/sci-electronics/NanoVNA-QT/files/NanoVNA-QT-20200507-missing_headers.patch @@ -8,6 +8,16 @@ using namespace std; typedef function<void(string dut_name, double cableLen1, double cableLen2)> xavna_ui_changed_cb; +--- a/vna_qt/firmwareupdater.H ++++ b/vna_qt/firmwareupdater.H +@@ -2,6 +2,7 @@ + #define FIRMWAREUPDATER_H + #include <string> + #include <functional> ++#include <cstdint> + #include <pthread.h> + using namespace std; + --- a/vna_qt/polarview.C +++ b/vna_qt/polarview.C @@ -3,6 +3,7 @@ @@ -18,3 +28,13 @@ PolarView::PolarView(QWidget *parent) : QWidget(parent) { +--- a/vna_qt/polarview.H ++++ b/vna_qt/polarview.H +@@ -5,6 +5,7 @@ + #include <QImage> + #include <vector> + #include <complex> ++#include <cstdint> + using namespace std; + + |