aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--jrt_test/src/jrt-test/simpleserver/simpleserver.cpp2
-rw-r--r--jrt_test/src/tests/echo/echo-client.cpp2
-rw-r--r--jrt_test/src/tests/mandatory-methods/extract-reflection.cpp2
-rw-r--r--jrt_test/src/tests/mockup-invoke/mockup-server.cpp2
-rw-r--r--jrt_test/src/tests/rpc-error/test-errors.cpp2
5 files changed, 5 insertions, 5 deletions
diff --git a/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp b/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp
index ef13973c0ce..75defdc3881 100644
--- a/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp
+++ b/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp
@@ -70,7 +70,7 @@ public:
class App : public FastOS_Application
{
public:
- int Main();
+ int Main() override;
};
diff --git a/jrt_test/src/tests/echo/echo-client.cpp b/jrt_test/src/tests/echo/echo-client.cpp
index 4d246431793..2d72cdc937b 100644
--- a/jrt_test/src/tests/echo/echo-client.cpp
+++ b/jrt_test/src/tests/echo/echo-client.cpp
@@ -7,7 +7,7 @@ LOG_SETUP("echo_client");
class EchoClient : public FastOS_Application
{
public:
- int Main()
+ int Main() override
{
if (_argc < 2) {
printf("usage : echo_client <connectspec>\n");
diff --git a/jrt_test/src/tests/mandatory-methods/extract-reflection.cpp b/jrt_test/src/tests/mandatory-methods/extract-reflection.cpp
index 7b92997cfdf..98584e9a284 100644
--- a/jrt_test/src/tests/mandatory-methods/extract-reflection.cpp
+++ b/jrt_test/src/tests/mandatory-methods/extract-reflection.cpp
@@ -64,7 +64,7 @@ public:
}
- int Main()
+ int Main() override
{
if (_argc < 2) {
printf("usage : rpc_info <connectspec> [verbose]\n");
diff --git a/jrt_test/src/tests/mockup-invoke/mockup-server.cpp b/jrt_test/src/tests/mockup-invoke/mockup-server.cpp
index 97b2e945e57..46a1e2bc11a 100644
--- a/jrt_test/src/tests/mockup-invoke/mockup-server.cpp
+++ b/jrt_test/src/tests/mockup-invoke/mockup-server.cpp
@@ -42,7 +42,7 @@ public:
class App : public FastOS_Application
{
public:
- int Main();
+ int Main() override;
};
diff --git a/jrt_test/src/tests/rpc-error/test-errors.cpp b/jrt_test/src/tests/rpc-error/test-errors.cpp
index fd167b85085..07ff7425f9a 100644
--- a/jrt_test/src/tests/rpc-error/test-errors.cpp
+++ b/jrt_test/src/tests/rpc-error/test-errors.cpp
@@ -29,7 +29,7 @@ public:
void testWrongParameters();
void testWrongReturnValues();
void testMethodFailed();
- int Main();
+ int Main() override;
};