aboutsummaryrefslogtreecommitdiffstats
path: root/slobrok/src/tests/startsome
diff options
context:
space:
mode:
Diffstat (limited to 'slobrok/src/tests/startsome')
-rw-r--r--slobrok/src/tests/startsome/rpc_info.cpp2
-rw-r--r--slobrok/src/tests/startsome/tstdst.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/slobrok/src/tests/startsome/rpc_info.cpp b/slobrok/src/tests/startsome/rpc_info.cpp
index 09bc6727a2d..76b578d4f88 100644
--- a/slobrok/src/tests/startsome/rpc_info.cpp
+++ b/slobrok/src/tests/startsome/rpc_info.cpp
@@ -65,7 +65,7 @@ public:
}
- int Main()
+ int Main() override
{
if (_argc < 2) {
printf("usage : rpc_info <connectspec> [verbose]\n");
diff --git a/slobrok/src/tests/startsome/tstdst.cpp b/slobrok/src/tests/startsome/tstdst.cpp
index 7e5b21dfc8f..e2f6ae070b3 100644
--- a/slobrok/src/tests/startsome/tstdst.cpp
+++ b/slobrok/src/tests/startsome/tstdst.cpp
@@ -43,7 +43,7 @@ public:
int MainLoop();
void shutdown() { getTransport()->ShutDown(false); }
- void RequestDone(FRT_RPCRequest* req) {
+ void RequestDone(FRT_RPCRequest* req) override {
if (req->IsError()) {
LOG(error, "registration failed: %s", req->GetErrorMessage());
} else {
@@ -182,7 +182,7 @@ TstEnv::MainLoop()
class App : public FastOS_Application
{
public:
- int Main() {
+ int Main() override {
int sbport = 2773;
int myport = 2774;
const char *rpcsrvname = "testrpcsrv/17";