Tidying
This commit is contained in:
@@ -80,7 +80,7 @@ namespace Bloom
|
||||
std::vector<GenericEventPointer> getEvents();
|
||||
|
||||
public:
|
||||
explicit EventListener(const std::string& name) : name(name) {};
|
||||
explicit EventListener(const std::string& name): name(name) {};
|
||||
|
||||
void setId(size_t id) {
|
||||
this->id = id;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <src/Helpers/Thread.hpp>
|
||||
#include "Event.hpp"
|
||||
#include "src/Helpers/Thread.hpp"
|
||||
|
||||
namespace Bloom::Events
|
||||
{
|
||||
@@ -10,7 +10,7 @@ namespace Bloom::Events
|
||||
private:
|
||||
ThreadState state;
|
||||
public:
|
||||
DebugServerStateChanged(ThreadState state) : state(state) {};
|
||||
DebugServerStateChanged(ThreadState state): state(state) {};
|
||||
|
||||
static inline const std::string name = "DebugServerStateChanged";
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace Bloom::Events
|
||||
private:
|
||||
ThreadState state;
|
||||
public:
|
||||
InsightStateChanged(ThreadState state) : state(state) {
|
||||
InsightStateChanged(ThreadState state): state(state) {
|
||||
|
||||
};
|
||||
|
||||
|
||||
@@ -17,6 +17,6 @@ namespace Bloom::Events
|
||||
}
|
||||
|
||||
ResumeTargetExecution() = default;
|
||||
ResumeTargetExecution(std::uint32_t fromProgramCounter) : fromProgramCounter(fromProgramCounter) {};
|
||||
ResumeTargetExecution(std::uint32_t fromProgramCounter): fromProgramCounter(fromProgramCounter) {};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -17,6 +17,6 @@ namespace Bloom::Events
|
||||
}
|
||||
|
||||
StepTargetExecution() = default;
|
||||
StepTargetExecution(std::uint32_t fromProgramCounter) : fromProgramCounter(fromProgramCounter) {};
|
||||
StepTargetExecution(std::uint32_t fromProgramCounter): fromProgramCounter(fromProgramCounter) {};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ namespace Bloom::Events
|
||||
private:
|
||||
ThreadState state;
|
||||
public:
|
||||
TargetControllerStateChanged(ThreadState state) : state(state) {
|
||||
TargetControllerStateChanged(ThreadState state): state(state) {
|
||||
|
||||
};
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <src/Exceptions/Exception.hpp>
|
||||
#include "Event.hpp"
|
||||
#include "src/Exceptions/Exception.hpp"
|
||||
|
||||
namespace Bloom::Events
|
||||
{
|
||||
|
||||
@@ -20,6 +20,6 @@ namespace Bloom::Events
|
||||
}
|
||||
|
||||
WriteRegistersToTarget() = default;
|
||||
WriteRegistersToTarget(const TargetRegisters& registers) : registers(registers) {};
|
||||
WriteRegistersToTarget(const TargetRegisters& registers): registers(registers) {};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user