1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-14 11:01:50 +03:00

chore(codestyle): mark virtual methods as override

This commit is contained in:
Aleksei Antipovskii
2024-09-12 12:27:02 +02:00
committed by Leonid Fedorov
parent ad80ab40aa
commit 0ab03c7258
303 changed files with 4085 additions and 4886 deletions

View File

@@ -17,7 +17,7 @@
#include "PingTask.h"
#include "messageFormat.h"
#include <errno.h>
#include <cerrno>
namespace storagemanager
{
@@ -25,9 +25,7 @@ PingTask::PingTask(int sock, uint len) : PosixTask(sock, len)
{
}
PingTask::~PingTask()
{
}
PingTask::~PingTask() = default;
bool PingTask::run()
{
@@ -49,7 +47,7 @@ bool PingTask::run()
}
// send generic success response
sm_response ret;
sm_response ret{};
ret.returnCode = 0;
success = write(ret, 0);
return success;