diff --git a/src/EventManager/Events/DebugServerThreadStateChanged.hpp b/src/EventManager/Events/DebugServerThreadStateChanged.hpp index 0980e23e..17b0d10a 100644 --- a/src/EventManager/Events/DebugServerThreadStateChanged.hpp +++ b/src/EventManager/Events/DebugServerThreadStateChanged.hpp @@ -11,7 +11,7 @@ namespace Bloom::Events { public: static constexpr EventType type = EventType::DEBUG_SERVER_THREAD_STATE_CHANGED; - static inline const std::string name = "DebugServerThreadStateChanged"; + static const inline std::string name = "DebugServerThreadStateChanged"; explicit DebugServerThreadStateChanged(ThreadState state) : state(state) diff --git a/src/EventManager/Events/DebugSessionFinished.hpp b/src/EventManager/Events/DebugSessionFinished.hpp index f73dddb5..b6d8c8f5 100644 --- a/src/EventManager/Events/DebugSessionFinished.hpp +++ b/src/EventManager/Events/DebugSessionFinished.hpp @@ -10,7 +10,7 @@ namespace Bloom::Events { public: static constexpr EventType type = EventType::DEBUG_SESSION_FINISHED; - static inline const std::string name = "DebugSessionFinished"; + static const inline std::string name = "DebugSessionFinished"; [[nodiscard]] EventType getType() const override { return DebugSessionFinished::type; diff --git a/src/EventManager/Events/DebugSessionStarted.hpp b/src/EventManager/Events/DebugSessionStarted.hpp index 72f83822..d2c8aa30 100644 --- a/src/EventManager/Events/DebugSessionStarted.hpp +++ b/src/EventManager/Events/DebugSessionStarted.hpp @@ -10,7 +10,7 @@ namespace Bloom::Events { public: static constexpr EventType type = EventType::DEBUG_SESSION_STARTED; - static inline const std::string name = "DebugSessionStarted"; + static const inline std::string name = "DebugSessionStarted"; [[nodiscard]] EventType getType() const override { return DebugSessionStarted::type; diff --git a/src/EventManager/Events/Event.hpp b/src/EventManager/Events/Event.hpp index 8fc46a10..493b46de 100644 --- a/src/EventManager/Events/Event.hpp +++ b/src/EventManager/Events/Event.hpp @@ -41,7 +41,7 @@ namespace Bloom::Events QDateTime createdTimestamp = DateTime::currentDateTime(); static constexpr EventType type = EventType::GENERIC; - static inline const std::string name = "GenericEvent"; + static const inline std::string name = "GenericEvent"; Event() = default; virtual ~Event() = default; diff --git a/src/EventManager/Events/InsightThreadStateChanged.hpp b/src/EventManager/Events/InsightThreadStateChanged.hpp index 0f4fd047..3ce2e48f 100644 --- a/src/EventManager/Events/InsightThreadStateChanged.hpp +++ b/src/EventManager/Events/InsightThreadStateChanged.hpp @@ -13,7 +13,7 @@ namespace Bloom::Events explicit InsightThreadStateChanged(ThreadState state): state(state) {}; static constexpr EventType type = EventType::INSIGHT_THREAD_STATE_CHANGED; - static inline const std::string name = "InsightThreadStateChanged"; + static const inline std::string name = "InsightThreadStateChanged"; [[nodiscard]] EventType getType() const override { return InsightThreadStateChanged::type; diff --git a/src/EventManager/Events/MemoryWrittenToTarget.hpp b/src/EventManager/Events/MemoryWrittenToTarget.hpp index 63101e18..bcd11da2 100644 --- a/src/EventManager/Events/MemoryWrittenToTarget.hpp +++ b/src/EventManager/Events/MemoryWrittenToTarget.hpp @@ -11,7 +11,7 @@ namespace Bloom::Events { public: static constexpr EventType type = EventType::MEMORY_WRITTEN_TO_TARGET; - static inline const std::string name = "MemoryWrittenToTarget"; + static const inline std::string name = "MemoryWrittenToTarget"; Targets::TargetMemoryType memoryType; Targets::TargetMemoryAddress startAddress; diff --git a/src/EventManager/Events/ProgrammingModeDisabled.hpp b/src/EventManager/Events/ProgrammingModeDisabled.hpp index c74fcbf7..624fa2c5 100644 --- a/src/EventManager/Events/ProgrammingModeDisabled.hpp +++ b/src/EventManager/Events/ProgrammingModeDisabled.hpp @@ -10,7 +10,7 @@ namespace Bloom::Events { public: static constexpr EventType type = EventType::PROGRAMMING_MODE_DISABLED; - static inline const std::string name = "ProgrammingModeDisabled"; + static const inline std::string name = "ProgrammingModeDisabled"; [[nodiscard]] EventType getType() const override { return ProgrammingModeDisabled::type; diff --git a/src/EventManager/Events/ProgrammingModeEnabled.hpp b/src/EventManager/Events/ProgrammingModeEnabled.hpp index ae4d0d85..05bd544b 100644 --- a/src/EventManager/Events/ProgrammingModeEnabled.hpp +++ b/src/EventManager/Events/ProgrammingModeEnabled.hpp @@ -10,7 +10,7 @@ namespace Bloom::Events { public: static constexpr EventType type = EventType::PROGRAMMING_MODE_ENABLED; - static inline const std::string name = "ProgrammingModeEnabled"; + static const inline std::string name = "ProgrammingModeEnabled"; [[nodiscard]] EventType getType() const override { return ProgrammingModeEnabled::type; diff --git a/src/EventManager/Events/RegistersWrittenToTarget.hpp b/src/EventManager/Events/RegistersWrittenToTarget.hpp index 4060e853..f4b4c54e 100644 --- a/src/EventManager/Events/RegistersWrittenToTarget.hpp +++ b/src/EventManager/Events/RegistersWrittenToTarget.hpp @@ -11,7 +11,7 @@ namespace Bloom::Events { public: static constexpr EventType type = EventType::REGISTERS_WRITTEN_TO_TARGET; - static inline const std::string name = "RegistersWrittenToTarget"; + static const inline std::string name = "RegistersWrittenToTarget"; Targets::TargetRegisters registers; diff --git a/src/EventManager/Events/ShutdownApplication.hpp b/src/EventManager/Events/ShutdownApplication.hpp index a59f8b3d..e0a1d67c 100644 --- a/src/EventManager/Events/ShutdownApplication.hpp +++ b/src/EventManager/Events/ShutdownApplication.hpp @@ -10,7 +10,7 @@ namespace Bloom::Events { public: static constexpr EventType type = EventType::SHUTDOWN_APPLICATION; - static inline const std::string name = "ShutdownApplicationEvent"; + static const inline std::string name = "ShutdownApplicationEvent"; [[nodiscard]] EventType getType() const override { return ShutdownApplication::type; diff --git a/src/EventManager/Events/ShutdownDebugServer.hpp b/src/EventManager/Events/ShutdownDebugServer.hpp index 68c8aad7..1fe372d1 100644 --- a/src/EventManager/Events/ShutdownDebugServer.hpp +++ b/src/EventManager/Events/ShutdownDebugServer.hpp @@ -10,7 +10,7 @@ namespace Bloom::Events { public: static constexpr EventType type = EventType::SHUTDOWN_DEBUG_SERVER; - static inline const std::string name = "ShutdownDebugServer"; + static const inline std::string name = "ShutdownDebugServer"; [[nodiscard]] EventType getType() const override { return ShutdownDebugServer::type; diff --git a/src/EventManager/Events/ShutdownTargetController.hpp b/src/EventManager/Events/ShutdownTargetController.hpp index 7882f740..0d7630d5 100644 --- a/src/EventManager/Events/ShutdownTargetController.hpp +++ b/src/EventManager/Events/ShutdownTargetController.hpp @@ -10,7 +10,7 @@ namespace Bloom::Events { public: static constexpr EventType type = EventType::SHUTDOWN_TARGET_CONTROLLER; - static inline const std::string name = "ShutdownTargetControllerEvent"; + static const inline std::string name = "ShutdownTargetControllerEvent"; [[nodiscard]] EventType getType() const override { return ShutdownTargetController::type; diff --git a/src/EventManager/Events/TargetControllerErrorOccurred.hpp b/src/EventManager/Events/TargetControllerErrorOccurred.hpp index c3d6a2e3..9d514b6b 100644 --- a/src/EventManager/Events/TargetControllerErrorOccurred.hpp +++ b/src/EventManager/Events/TargetControllerErrorOccurred.hpp @@ -10,7 +10,7 @@ namespace Bloom::Events { public: static constexpr EventType type = EventType::TARGET_CONTROLLER_ERROR_OCCURRED; - static inline const std::string name = "TargetControllerErrorOccurred"; + static const inline std::string name = "TargetControllerErrorOccurred"; std::string errorMessage; diff --git a/src/EventManager/Events/TargetControllerStateChanged.hpp b/src/EventManager/Events/TargetControllerStateChanged.hpp index 41bafe04..c323ab63 100644 --- a/src/EventManager/Events/TargetControllerStateChanged.hpp +++ b/src/EventManager/Events/TargetControllerStateChanged.hpp @@ -11,7 +11,7 @@ namespace Bloom::Events { public: static constexpr EventType type = EventType::TARGET_CONTROLLER_STATE_CHANGED; - static inline const std::string name = "TargetControllerStateChanged"; + static const inline std::string name = "TargetControllerStateChanged"; TargetController::TargetControllerState state; explicit TargetControllerStateChanged(TargetController::TargetControllerState state) diff --git a/src/EventManager/Events/TargetControllerThreadStateChanged.hpp b/src/EventManager/Events/TargetControllerThreadStateChanged.hpp index 10a62836..760ece19 100644 --- a/src/EventManager/Events/TargetControllerThreadStateChanged.hpp +++ b/src/EventManager/Events/TargetControllerThreadStateChanged.hpp @@ -11,7 +11,7 @@ namespace Bloom::Events { public: static constexpr EventType type = EventType::TARGET_CONTROLLER_THREAD_STATE_CHANGED; - static inline const std::string name = "TargetControllerThreadStateChanged"; + static const inline std::string name = "TargetControllerThreadStateChanged"; explicit TargetControllerThreadStateChanged(ThreadState state) : state(state) diff --git a/src/EventManager/Events/TargetExecutionResumed.hpp b/src/EventManager/Events/TargetExecutionResumed.hpp index 0fac7bf2..7b4e1a1a 100644 --- a/src/EventManager/Events/TargetExecutionResumed.hpp +++ b/src/EventManager/Events/TargetExecutionResumed.hpp @@ -10,7 +10,7 @@ namespace Bloom::Events { public: static constexpr EventType type = EventType::TARGET_EXECUTION_RESUMED; - static inline const std::string name = "TargetExecutionResumed"; + static const inline std::string name = "TargetExecutionResumed"; bool stepping = false; diff --git a/src/EventManager/Events/TargetExecutionStopped.hpp b/src/EventManager/Events/TargetExecutionStopped.hpp index c4cfa45b..5db53307 100644 --- a/src/EventManager/Events/TargetExecutionStopped.hpp +++ b/src/EventManager/Events/TargetExecutionStopped.hpp @@ -14,7 +14,7 @@ namespace Bloom::Events { public: static constexpr EventType type = EventType::TARGET_EXECUTION_STOPPED; - static inline const std::string name = "TargetExecutionStopped"; + static const inline std::string name = "TargetExecutionStopped"; Targets::TargetProgramCounter programCounter; Targets::TargetBreakCause breakCause; diff --git a/src/EventManager/Events/TargetReset.hpp b/src/EventManager/Events/TargetReset.hpp index c27ee9ec..6eb08a9b 100644 --- a/src/EventManager/Events/TargetReset.hpp +++ b/src/EventManager/Events/TargetReset.hpp @@ -10,7 +10,7 @@ namespace Bloom::Events { public: static constexpr EventType type = EventType::TARGET_RESET; - static inline const std::string name = "TargetReset"; + static const inline std::string name = "TargetReset"; [[nodiscard]] EventType getType() const override { return TargetReset::type; diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/MemoryRegionManager/FocusedRegionItem.hpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/MemoryRegionManager/FocusedRegionItem.hpp index 41b9d3d0..916c2730 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/MemoryRegionManager/FocusedRegionItem.hpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/MemoryRegionManager/FocusedRegionItem.hpp @@ -52,7 +52,7 @@ namespace Bloom::Widgets QComboBox* dataTypeInput = nullptr; QComboBox* endiannessInput = nullptr; - static inline const std::map dataTypeOptionsByName = std::map< + static const inline std::map dataTypeOptionsByName = std::map< QString, DataTypeOption >({ {"other", DataTypeOption("Other", MemoryRegionDataType::UNKNOWN)}, @@ -61,7 +61,7 @@ namespace Bloom::Widgets {"ascii", DataTypeOption("ASCII String", MemoryRegionDataType::ASCII_STRING)}, }); - static inline const std::map endiannessOptionsByName = std::map< + static const inline std::map endiannessOptionsByName = std::map< QString, EndiannessOption >({ {"little", EndiannessOption("Little-endian", Targets::TargetMemoryEndianness::LITTLE)}, diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/MemoryRegionManager/RegionItem.hpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/MemoryRegionManager/RegionItem.hpp index 58b18f2d..7ee99c02 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/MemoryRegionManager/RegionItem.hpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetMemoryInspectionPane/MemoryRegionManager/RegionItem.hpp @@ -83,7 +83,7 @@ namespace Bloom::Widgets Label* addressRangeLabel = new Label(this); Label* timeLabel = new Label(this); - static inline const std::map addressRangeTypeOptionsByName = std::map< + static const inline std::map addressRangeTypeOptionsByName = std::map< QString, AddressRangeTypeOption >({ {"absolute", AddressRangeTypeOption("Absolute", AddressType::ABSOLUTE)}, diff --git a/src/TargetController/Commands/Command.hpp b/src/TargetController/Commands/Command.hpp index 241a3910..b1d83c82 100644 --- a/src/TargetController/Commands/Command.hpp +++ b/src/TargetController/Commands/Command.hpp @@ -21,7 +21,7 @@ namespace Bloom::TargetController::Commands CommandIdType id = ++(Command::lastCommandId); static constexpr CommandType type = CommandType::GENERIC; - static inline const std::string name = "GenericCommand"; + static const inline std::string name = "GenericCommand"; Command() = default; virtual ~Command() = default; diff --git a/src/TargetController/Commands/DisableProgrammingMode.hpp b/src/TargetController/Commands/DisableProgrammingMode.hpp index 51dd4eae..0e36e56c 100644 --- a/src/TargetController/Commands/DisableProgrammingMode.hpp +++ b/src/TargetController/Commands/DisableProgrammingMode.hpp @@ -8,7 +8,7 @@ namespace Bloom::TargetController::Commands { public: static constexpr CommandType type = CommandType::DISABLE_PROGRAMMING_MODE; - static inline const std::string name = "DisableProgrammingMode"; + static const inline std::string name = "DisableProgrammingMode"; DisableProgrammingMode() = default; diff --git a/src/TargetController/Commands/EnableProgrammingMode.hpp b/src/TargetController/Commands/EnableProgrammingMode.hpp index 7584b530..a9efd7aa 100644 --- a/src/TargetController/Commands/EnableProgrammingMode.hpp +++ b/src/TargetController/Commands/EnableProgrammingMode.hpp @@ -8,7 +8,7 @@ namespace Bloom::TargetController::Commands { public: static constexpr CommandType type = CommandType::ENABLE_PROGRAMMING_MODE; - static inline const std::string name = "EnableProgrammingMode"; + static const inline std::string name = "EnableProgrammingMode"; EnableProgrammingMode() = default; diff --git a/src/TargetController/Commands/GetState.hpp b/src/TargetController/Commands/GetState.hpp index d0d73a59..43fce95f 100644 --- a/src/TargetController/Commands/GetState.hpp +++ b/src/TargetController/Commands/GetState.hpp @@ -12,7 +12,7 @@ namespace Bloom::TargetController::Commands using SuccessResponseType = Responses::State; static constexpr CommandType type = CommandType::GET_STATE; - static inline const std::string name = "GetState"; + static const inline std::string name = "GetState"; [[nodiscard]] CommandType getType() const override { return GetState::type; diff --git a/src/TargetController/Commands/GetTargetDescriptor.hpp b/src/TargetController/Commands/GetTargetDescriptor.hpp index d31a134d..518f43a2 100644 --- a/src/TargetController/Commands/GetTargetDescriptor.hpp +++ b/src/TargetController/Commands/GetTargetDescriptor.hpp @@ -12,7 +12,7 @@ namespace Bloom::TargetController::Commands using SuccessResponseType = Responses::TargetDescriptor; static constexpr CommandType type = CommandType::GET_TARGET_DESCRIPTOR; - static inline const std::string name = "GetTargetDescriptor"; + static const inline std::string name = "GetTargetDescriptor"; [[nodiscard]] CommandType getType() const override { return GetTargetDescriptor::type; diff --git a/src/TargetController/Commands/GetTargetPinStates.hpp b/src/TargetController/Commands/GetTargetPinStates.hpp index 78d45b86..21812b8b 100644 --- a/src/TargetController/Commands/GetTargetPinStates.hpp +++ b/src/TargetController/Commands/GetTargetPinStates.hpp @@ -12,7 +12,7 @@ namespace Bloom::TargetController::Commands using SuccessResponseType = Responses::TargetPinStates; static constexpr CommandType type = CommandType::GET_TARGET_PIN_STATES; - static inline const std::string name = "GetTargetPinStates"; + static const inline std::string name = "GetTargetPinStates"; int variantId = 0; diff --git a/src/TargetController/Commands/GetTargetProgramCounter.hpp b/src/TargetController/Commands/GetTargetProgramCounter.hpp index 43e1c80c..35911eca 100644 --- a/src/TargetController/Commands/GetTargetProgramCounter.hpp +++ b/src/TargetController/Commands/GetTargetProgramCounter.hpp @@ -12,7 +12,7 @@ namespace Bloom::TargetController::Commands using SuccessResponseType = Responses::TargetProgramCounter; static constexpr CommandType type = CommandType::GET_TARGET_PROGRAM_COUNTER; - static inline const std::string name = "GetTargetProgramCounter"; + static const inline std::string name = "GetTargetProgramCounter"; [[nodiscard]] CommandType getType() const override { return GetTargetProgramCounter::type; diff --git a/src/TargetController/Commands/GetTargetStackPointer.hpp b/src/TargetController/Commands/GetTargetStackPointer.hpp index 39d7f2aa..f0a2f034 100644 --- a/src/TargetController/Commands/GetTargetStackPointer.hpp +++ b/src/TargetController/Commands/GetTargetStackPointer.hpp @@ -12,7 +12,7 @@ namespace Bloom::TargetController::Commands using SuccessResponseType = Responses::TargetStackPointer; static constexpr CommandType type = CommandType::GET_TARGET_STACK_POINTER; - static inline const std::string name = "GetTargetStackPointer"; + static const inline std::string name = "GetTargetStackPointer"; [[nodiscard]] CommandType getType() const override { return GetTargetStackPointer::type; diff --git a/src/TargetController/Commands/GetTargetState.hpp b/src/TargetController/Commands/GetTargetState.hpp index 9c4f6108..aa325e90 100644 --- a/src/TargetController/Commands/GetTargetState.hpp +++ b/src/TargetController/Commands/GetTargetState.hpp @@ -11,7 +11,7 @@ namespace Bloom::TargetController::Commands using SuccessResponseType = Responses::TargetState; static constexpr CommandType type = CommandType::GET_TARGET_STATE; - static inline const std::string name = "GetTargetState"; + static const inline std::string name = "GetTargetState"; [[nodiscard]] CommandType getType() const override { return GetTargetState::type; diff --git a/src/TargetController/Commands/ReadTargetMemory.hpp b/src/TargetController/Commands/ReadTargetMemory.hpp index 63d59092..32bf619a 100644 --- a/src/TargetController/Commands/ReadTargetMemory.hpp +++ b/src/TargetController/Commands/ReadTargetMemory.hpp @@ -16,7 +16,7 @@ namespace Bloom::TargetController::Commands using SuccessResponseType = Responses::TargetMemoryRead; static constexpr CommandType type = CommandType::READ_TARGET_MEMORY; - static inline const std::string name = "ReadTargetMemory"; + static const inline std::string name = "ReadTargetMemory"; Targets::TargetMemoryType memoryType; Targets::TargetMemoryAddress startAddress; diff --git a/src/TargetController/Commands/ReadTargetRegisters.hpp b/src/TargetController/Commands/ReadTargetRegisters.hpp index 52201cdf..3048484c 100644 --- a/src/TargetController/Commands/ReadTargetRegisters.hpp +++ b/src/TargetController/Commands/ReadTargetRegisters.hpp @@ -13,7 +13,7 @@ namespace Bloom::TargetController::Commands using SuccessResponseType = Responses::TargetRegistersRead; static constexpr CommandType type = CommandType::READ_TARGET_REGISTERS; - static inline const std::string name = "ReadTargetRegisters"; + static const inline std::string name = "ReadTargetRegisters"; Targets::TargetRegisterDescriptors descriptors; diff --git a/src/TargetController/Commands/RemoveBreakpoint.hpp b/src/TargetController/Commands/RemoveBreakpoint.hpp index 94e4ddf1..afacfe0b 100644 --- a/src/TargetController/Commands/RemoveBreakpoint.hpp +++ b/src/TargetController/Commands/RemoveBreakpoint.hpp @@ -10,7 +10,7 @@ namespace Bloom::TargetController::Commands { public: static constexpr CommandType type = CommandType::REMOVE_BREAKPOINT; - static inline const std::string name = "RemoveBreakpoint"; + static const inline std::string name = "RemoveBreakpoint"; Targets::TargetBreakpoint breakpoint; diff --git a/src/TargetController/Commands/ResetTarget.hpp b/src/TargetController/Commands/ResetTarget.hpp index 06a64c0b..42975c83 100644 --- a/src/TargetController/Commands/ResetTarget.hpp +++ b/src/TargetController/Commands/ResetTarget.hpp @@ -8,7 +8,7 @@ namespace Bloom::TargetController::Commands { public: static constexpr CommandType type = CommandType::RESET_TARGET; - static inline const std::string name = "ResetTarget"; + static const inline std::string name = "ResetTarget"; [[nodiscard]] CommandType getType() const override { return ResetTarget::type; diff --git a/src/TargetController/Commands/Resume.hpp b/src/TargetController/Commands/Resume.hpp index 47e6e0e1..1c66ad79 100644 --- a/src/TargetController/Commands/Resume.hpp +++ b/src/TargetController/Commands/Resume.hpp @@ -8,7 +8,7 @@ namespace Bloom::TargetController::Commands { public: static constexpr CommandType type = CommandType::RESUME; - static inline const std::string name = "Resume"; + static const inline std::string name = "Resume"; [[nodiscard]] CommandType getType() const override { return Resume::type; diff --git a/src/TargetController/Commands/ResumeTargetExecution.hpp b/src/TargetController/Commands/ResumeTargetExecution.hpp index 0c6f6684..8a09f8e0 100644 --- a/src/TargetController/Commands/ResumeTargetExecution.hpp +++ b/src/TargetController/Commands/ResumeTargetExecution.hpp @@ -12,7 +12,7 @@ namespace Bloom::TargetController::Commands { public: static constexpr CommandType type = CommandType::RESUME_TARGET_EXECUTION; - static inline const std::string name = "ResumeTargetExecution"; + static const inline std::string name = "ResumeTargetExecution"; std::optional fromProgramCounter; diff --git a/src/TargetController/Commands/SetBreakpoint.hpp b/src/TargetController/Commands/SetBreakpoint.hpp index 29385419..41e2e132 100644 --- a/src/TargetController/Commands/SetBreakpoint.hpp +++ b/src/TargetController/Commands/SetBreakpoint.hpp @@ -10,7 +10,7 @@ namespace Bloom::TargetController::Commands { public: static constexpr CommandType type = CommandType::SET_BREAKPOINT; - static inline const std::string name = "SetBreakpoint"; + static const inline std::string name = "SetBreakpoint"; Targets::TargetBreakpoint breakpoint; diff --git a/src/TargetController/Commands/SetTargetPinState.hpp b/src/TargetController/Commands/SetTargetPinState.hpp index 7b9d37e4..924c8172 100644 --- a/src/TargetController/Commands/SetTargetPinState.hpp +++ b/src/TargetController/Commands/SetTargetPinState.hpp @@ -10,7 +10,7 @@ namespace Bloom::TargetController::Commands { public: static constexpr CommandType type = CommandType::SET_TARGET_PIN_STATE; - static inline const std::string name = "SetTargetPinState"; + static const inline std::string name = "SetTargetPinState"; Targets::TargetPinDescriptor pinDescriptor; Targets::TargetPinState pinState; diff --git a/src/TargetController/Commands/SetTargetProgramCounter.hpp b/src/TargetController/Commands/SetTargetProgramCounter.hpp index 4fedc972..1e7a7d1c 100644 --- a/src/TargetController/Commands/SetTargetProgramCounter.hpp +++ b/src/TargetController/Commands/SetTargetProgramCounter.hpp @@ -12,7 +12,7 @@ namespace Bloom::TargetController::Commands { public: static constexpr CommandType type = CommandType::SET_TARGET_PROGRAM_COUNTER; - static inline const std::string name = "SetTargetProgramCounter"; + static const inline std::string name = "SetTargetProgramCounter"; Targets::TargetProgramCounter address = 0; diff --git a/src/TargetController/Commands/StepTargetExecution.hpp b/src/TargetController/Commands/StepTargetExecution.hpp index be194931..e8b0b16c 100644 --- a/src/TargetController/Commands/StepTargetExecution.hpp +++ b/src/TargetController/Commands/StepTargetExecution.hpp @@ -12,7 +12,7 @@ namespace Bloom::TargetController::Commands { public: static constexpr CommandType type = CommandType::STEP_TARGET_EXECUTION; - static inline const std::string name = "StepTargetExecution"; + static const inline std::string name = "StepTargetExecution"; std::optional fromProgramCounter; diff --git a/src/TargetController/Commands/StopTargetExecution.hpp b/src/TargetController/Commands/StopTargetExecution.hpp index 09cbc65e..47833973 100644 --- a/src/TargetController/Commands/StopTargetExecution.hpp +++ b/src/TargetController/Commands/StopTargetExecution.hpp @@ -8,7 +8,7 @@ namespace Bloom::TargetController::Commands { public: static constexpr CommandType type = CommandType::STOP_TARGET_EXECUTION; - static inline const std::string name = "StopTargetExecution"; + static const inline std::string name = "StopTargetExecution"; [[nodiscard]] CommandType getType() const override { return StopTargetExecution::type; diff --git a/src/TargetController/Commands/Suspend.hpp b/src/TargetController/Commands/Suspend.hpp index 39371adc..bf329c63 100644 --- a/src/TargetController/Commands/Suspend.hpp +++ b/src/TargetController/Commands/Suspend.hpp @@ -8,7 +8,7 @@ namespace Bloom::TargetController::Commands { public: static constexpr CommandType type = CommandType::SUSPEND; - static inline const std::string name = "Suspend"; + static const inline std::string name = "Suspend"; [[nodiscard]] CommandType getType() const override { return Suspend::type; diff --git a/src/TargetController/Commands/WriteTargetMemory.hpp b/src/TargetController/Commands/WriteTargetMemory.hpp index 32f14213..2eab22a3 100644 --- a/src/TargetController/Commands/WriteTargetMemory.hpp +++ b/src/TargetController/Commands/WriteTargetMemory.hpp @@ -11,7 +11,7 @@ namespace Bloom::TargetController::Commands { public: static constexpr CommandType type = CommandType::WRITE_TARGET_MEMORY; - static inline const std::string name = "WriteTargetMemory"; + static const inline std::string name = "WriteTargetMemory"; Targets::TargetMemoryType memoryType; Targets::TargetMemoryAddress startAddress; diff --git a/src/TargetController/Commands/WriteTargetRegisters.hpp b/src/TargetController/Commands/WriteTargetRegisters.hpp index b34e7143..beb5a4eb 100644 --- a/src/TargetController/Commands/WriteTargetRegisters.hpp +++ b/src/TargetController/Commands/WriteTargetRegisters.hpp @@ -10,7 +10,7 @@ namespace Bloom::TargetController::Commands { public: static constexpr CommandType type = CommandType::WRITE_TARGET_REGISTERS; - static inline const std::string name = "WriteTargetRegisters"; + static const inline std::string name = "WriteTargetRegisters"; Targets::TargetRegisters registers;