From 6d3e5df463dbb4f51c1728a337cb2c499a613f8f Mon Sep 17 00:00:00 2001 From: devttys <56679555+devttys@users.noreply.github.com> Date: Sun, 11 Feb 2024 11:54:10 +0000 Subject: [PATCH 1/2] Add missing includes --- host/include/uhd/cal/database.hpp | 1 + host/include/uhd/rfnoc/defaults.hpp | 1 + host/include/uhd/types/eeprom.hpp | 1 + 3 files changed, 3 insertions(+) diff --git a/host/include/uhd/cal/database.hpp b/host/include/uhd/cal/database.hpp index b6abbb6df..44edf1e63 100644 --- a/host/include/uhd/cal/database.hpp +++ b/host/include/uhd/cal/database.hpp @@ -11,6 +11,7 @@ #include #include #include +#include namespace uhd { namespace usrp { namespace cal { diff --git a/host/include/uhd/rfnoc/defaults.hpp b/host/include/uhd/rfnoc/defaults.hpp index d0f6c2311..f9cf1353e 100644 --- a/host/include/uhd/rfnoc/defaults.hpp +++ b/host/include/uhd/rfnoc/defaults.hpp @@ -9,6 +9,7 @@ #pragma once #include +#include namespace uhd { namespace rfnoc { diff --git a/host/include/uhd/types/eeprom.hpp b/host/include/uhd/types/eeprom.hpp index 3a7605d3c..2b3c5c05e 100644 --- a/host/include/uhd/types/eeprom.hpp +++ b/host/include/uhd/types/eeprom.hpp @@ -9,6 +9,7 @@ #include #include #include +#include namespace uhd { From bf4b4f7e8a8d9a6385b3cb3a7c14090b9c79f513 Mon Sep 17 00:00:00 2001 From: devttys <56679555+devttys@users.noreply.github.com> Date: Sun, 11 Feb 2024 11:54:36 +0000 Subject: [PATCH 2/2] Add missing include --- host/lib/utils/serial_number.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/host/lib/utils/serial_number.cpp b/host/lib/utils/serial_number.cpp index 61296a913..a36e7848b 100644 --- a/host/lib/utils/serial_number.cpp +++ b/host/lib/utils/serial_number.cpp @@ -7,6 +7,7 @@ #include #include #include +#include namespace uhd { namespace utils { bool serial_numbers_match(const std::string& serial_a, const std::string& serial_b)