aboutsummaryrefslogtreecommitdiffstats
path: root/jrt_test
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahoo-inc.com>2017-04-11 11:44:17 +0200
committerArne H Juul <arnej@yahoo-inc.com>2017-04-11 11:44:17 +0200
commit58573d26c04d0be7231678729e88ce0acd305053 (patch)
treee96cba62a33a32279b066d29ab1ad0a01af9513c /jrt_test
parent46fd0575db3dd0ff030945b19700fb056b807690 (diff)
add override in jrt_test module
Diffstat (limited to 'jrt_test')
-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;
};