Fixed version number comparison bug and a little tidying
This commit is contained in:
@@ -32,9 +32,9 @@ namespace Bloom::DebugServer::Gdb::CommandPackets
|
||||
QJsonDocument(QJsonObject({
|
||||
{"version", QString::fromStdString(Application::VERSION.toString())},
|
||||
{"components", QJsonObject({
|
||||
{"major", Application::VERSION.getMajor()},
|
||||
{"minor", Application::VERSION.getMinor()},
|
||||
{"patch", Application::VERSION.getPatch()},
|
||||
{"major", Application::VERSION.major},
|
||||
{"minor", Application::VERSION.minor},
|
||||
{"patch", Application::VERSION.patch},
|
||||
})},
|
||||
})).toJson().toStdString()
|
||||
)));
|
||||
|
||||
Reference in New Issue
Block a user