From 59c7580644efb436f20bd0621a0c13c696301aa7 Mon Sep 17 00:00:00 2001 From: Nav Date: Fri, 25 Mar 2022 00:15:56 +0000 Subject: [PATCH] Corrected OkResponsePacket constructor name --- src/DebugServers/GdbRsp/ResponsePackets/OkResponsePacket.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DebugServers/GdbRsp/ResponsePackets/OkResponsePacket.hpp b/src/DebugServers/GdbRsp/ResponsePackets/OkResponsePacket.hpp index a2335387..6288656e 100644 --- a/src/DebugServers/GdbRsp/ResponsePackets/OkResponsePacket.hpp +++ b/src/DebugServers/GdbRsp/ResponsePackets/OkResponsePacket.hpp @@ -10,7 +10,7 @@ namespace Bloom::DebugServers::Gdb::ResponsePackets class OkResponsePacket: public ResponsePacket { public: - Ok() = default; + OkResponsePacket() = default; [[nodiscard]] std::vector getData() const override { return {'O', 'K'};