From cb9059c691dbb733f34537513952fd693dbe6dbc Mon Sep 17 00:00:00 2001 From: Nav Date: Mon, 26 Aug 2024 12:42:04 +0100 Subject: [PATCH] Tidying --- src/DebugServer/Gdb/CommandPackets/Monitor.cpp | 1 + src/Targets/TargetDescription/MemorySegment.hpp | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/src/DebugServer/Gdb/CommandPackets/Monitor.cpp b/src/DebugServer/Gdb/CommandPackets/Monitor.cpp index b588bd99..91a92d08 100644 --- a/src/DebugServer/Gdb/CommandPackets/Monitor.cpp +++ b/src/DebugServer/Gdb/CommandPackets/Monitor.cpp @@ -41,6 +41,7 @@ namespace DebugServer::Gdb::CommandPackets std::vector Monitor::extractCommandArguments(const std::string& command) { auto output = std::vector{}; + // TODO: Support escaping auto quoteEnabled = false; auto argument = std::string{}; diff --git a/src/Targets/TargetDescription/MemorySegment.hpp b/src/Targets/TargetDescription/MemorySegment.hpp index c08ad7b0..6ea47ae4 100644 --- a/src/Targets/TargetDescription/MemorySegment.hpp +++ b/src/Targets/TargetDescription/MemorySegment.hpp @@ -1,6 +1,12 @@ #pragma once +#include +#include #include +#include +#include +#include +#include #include "src/Targets/TargetMemorySegmentType.hpp" #include "src/Targets/TargetMemory.hpp"