Tidying
This commit is contained in:
@@ -39,8 +39,6 @@ namespace Bloom::DebugServers
|
||||
environmentConfig(environmentConfig),
|
||||
debugServerConfig(debugServerConfig) {};
|
||||
|
||||
virtual ~DebugServer() = default;
|
||||
|
||||
/**
|
||||
* Entry point for the DebugServer. This must called from a dedicated thread.
|
||||
*/
|
||||
|
||||
@@ -17,12 +17,19 @@ namespace Bloom::DebugServers::Gdb
|
||||
class Packet
|
||||
{
|
||||
public:
|
||||
Packet() = default;
|
||||
explicit Packet(const std::vector<unsigned char>& rawPacket) {
|
||||
this->init(rawPacket);
|
||||
}
|
||||
|
||||
Packet() = default;
|
||||
virtual ~Packet() = default;
|
||||
|
||||
Packet(const Packet& other) = default;
|
||||
Packet(Packet&& other) = default;
|
||||
|
||||
Packet& operator = (const Packet& other) = default;
|
||||
Packet& operator = (Packet&& other) = default;
|
||||
|
||||
[[nodiscard]] virtual std::vector<unsigned char> getData() const {
|
||||
return this->data;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user