From bc8206ccc7c0ea47ffb070cf21d75d001fc70c25 Mon Sep 17 00:00:00 2001 From: Nav Date: Sun, 9 Oct 2022 13:10:17 +0100 Subject: [PATCH] Corrected missing header includes --- src/Application.hpp | 1 + src/DebugServer/Gdb/AvrGdb/AvrGdbRsp.hpp | 2 +- src/DebugServer/Gdb/Connection.hpp | 1 + .../Gdb/ResponsePackets/SupportedFeaturesResponse.hpp | 1 + src/DebugServer/Gdb/ResponsePackets/TargetStopped.hpp | 2 ++ .../CMSIS-DAP/VendorSpecific/EDBG/AVR/EdbgAvr8Interface.hpp | 1 + .../VendorSpecific/EDBG/AVR/Exceptions/Avr8CommandFailure.hpp | 2 ++ .../Protocols/CMSIS-DAP/VendorSpecific/EDBG/EdbgInterface.hpp | 2 ++ src/Helpers/BiMap.hpp | 1 + src/ProjectConfig.hpp | 1 + src/Targets/Microchip/AVR/AVR8/Avr8.hpp | 1 + .../AVR/AVR8/TargetDescription/TargetDescriptionFile.hpp | 1 + src/Targets/Microchip/AVR/Target.hpp | 1 + src/Targets/TargetDescription/MemorySegment.hpp | 1 + 14 files changed, 17 insertions(+), 1 deletion(-) diff --git a/src/Application.hpp b/src/Application.hpp index d0476bbb..43c716fd 100644 --- a/src/Application.hpp +++ b/src/Application.hpp @@ -3,6 +3,7 @@ #include #include #include +#include #include #include #include diff --git a/src/DebugServer/Gdb/AvrGdb/AvrGdbRsp.hpp b/src/DebugServer/Gdb/AvrGdb/AvrGdbRsp.hpp index d78800db..a0158c34 100644 --- a/src/DebugServer/Gdb/AvrGdb/AvrGdbRsp.hpp +++ b/src/DebugServer/Gdb/AvrGdb/AvrGdbRsp.hpp @@ -32,7 +32,7 @@ namespace Bloom::DebugServer::Gdb::AvrGdb const RawPacket& rawPacket ) override; - std::set>> getSupportedFeatures() override ; + std::set>> getSupportedFeatures() override; private: std::optional gdbTargetDescriptor; diff --git a/src/DebugServer/Gdb/Connection.hpp b/src/DebugServer/Gdb/Connection.hpp index 6e6888e3..74bb2d43 100644 --- a/src/DebugServer/Gdb/Connection.hpp +++ b/src/DebugServer/Gdb/Connection.hpp @@ -4,6 +4,7 @@ #include #include #include +#include #include #include #include diff --git a/src/DebugServer/Gdb/ResponsePackets/SupportedFeaturesResponse.hpp b/src/DebugServer/Gdb/ResponsePackets/SupportedFeaturesResponse.hpp index f8e08e25..3037c9b3 100644 --- a/src/DebugServer/Gdb/ResponsePackets/SupportedFeaturesResponse.hpp +++ b/src/DebugServer/Gdb/ResponsePackets/SupportedFeaturesResponse.hpp @@ -2,6 +2,7 @@ #include #include +#include #include "ResponsePacket.hpp" diff --git a/src/DebugServer/Gdb/ResponsePackets/TargetStopped.hpp b/src/DebugServer/Gdb/ResponsePackets/TargetStopped.hpp index 8108732e..ec636330 100644 --- a/src/DebugServer/Gdb/ResponsePackets/TargetStopped.hpp +++ b/src/DebugServer/Gdb/ResponsePackets/TargetStopped.hpp @@ -1,5 +1,7 @@ #pragma once +#include + #include "ResponsePacket.hpp" #include "src/DebugServer/Gdb/Signal.hpp" diff --git a/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/EdbgAvr8Interface.hpp b/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/EdbgAvr8Interface.hpp index 41bf9c28..eb529089 100644 --- a/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/EdbgAvr8Interface.hpp +++ b/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/EdbgAvr8Interface.hpp @@ -3,6 +3,7 @@ #include #include #include +#include #include #include "src/DebugToolDrivers/TargetInterfaces/Microchip/AVR/AVR8/Avr8DebugInterface.hpp" diff --git a/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/Exceptions/Avr8CommandFailure.hpp b/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/Exceptions/Avr8CommandFailure.hpp index 9dc17a33..fbc89819 100644 --- a/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/Exceptions/Avr8CommandFailure.hpp +++ b/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/Exceptions/Avr8CommandFailure.hpp @@ -1,5 +1,7 @@ #pragma once +#include + #include "src/TargetController/Exceptions/TargetOperationFailure.hpp" #include "src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/ResponseFrames/AVR8Generic/Avr8GenericResponseFrame.hpp" diff --git a/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/EdbgInterface.hpp b/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/EdbgInterface.hpp index 6c8884dc..f0b368ea 100644 --- a/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/EdbgInterface.hpp +++ b/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/EdbgInterface.hpp @@ -1,6 +1,8 @@ #pragma once #include +#include +#include #include "src/DebugToolDrivers/Protocols/CMSIS-DAP/CmsisDapInterface.hpp" #include "src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/AvrCommand.hpp" diff --git a/src/Helpers/BiMap.hpp b/src/Helpers/BiMap.hpp index f6c723ee..8ff7033e 100644 --- a/src/Helpers/BiMap.hpp +++ b/src/Helpers/BiMap.hpp @@ -2,6 +2,7 @@ #include #include +#include #include namespace Bloom diff --git a/src/ProjectConfig.hpp b/src/ProjectConfig.hpp index a498ea3d..c1646a83 100644 --- a/src/ProjectConfig.hpp +++ b/src/ProjectConfig.hpp @@ -3,6 +3,7 @@ #include #include #include +#include #include namespace Bloom diff --git a/src/Targets/Microchip/AVR/AVR8/Avr8.hpp b/src/Targets/Microchip/AVR/AVR8/Avr8.hpp index 8976d55f..4ed0543a 100644 --- a/src/Targets/Microchip/AVR/AVR8/Avr8.hpp +++ b/src/Targets/Microchip/AVR/AVR8/Avr8.hpp @@ -3,6 +3,7 @@ #include #include #include +#include #include "src/Targets/Microchip/AVR/Target.hpp" #include "src/DebugToolDrivers/DebugTool.hpp" diff --git a/src/Targets/Microchip/AVR/AVR8/TargetDescription/TargetDescriptionFile.hpp b/src/Targets/Microchip/AVR/AVR8/TargetDescription/TargetDescriptionFile.hpp index f4272c5c..18b07300 100644 --- a/src/Targets/Microchip/AVR/AVR8/TargetDescription/TargetDescriptionFile.hpp +++ b/src/Targets/Microchip/AVR/AVR8/TargetDescription/TargetDescriptionFile.hpp @@ -1,6 +1,7 @@ #pragma once #include +#include #include "src/Targets/TargetDescription/TargetDescriptionFile.hpp" diff --git a/src/Targets/Microchip/AVR/Target.hpp b/src/Targets/Microchip/AVR/Target.hpp index 08001371..e10328f7 100644 --- a/src/Targets/Microchip/AVR/Target.hpp +++ b/src/Targets/Microchip/AVR/Target.hpp @@ -1,6 +1,7 @@ #pragma once #include +#include #include "src/Targets/Target.hpp" diff --git a/src/Targets/TargetDescription/MemorySegment.hpp b/src/Targets/TargetDescription/MemorySegment.hpp index 8990c6a1..25559afe 100644 --- a/src/Targets/TargetDescription/MemorySegment.hpp +++ b/src/Targets/TargetDescription/MemorySegment.hpp @@ -1,6 +1,7 @@ #pragma once #include +#include #include #include "src/Helpers/BiMap.hpp"