Add missing override annotations

Issue #3159
This commit is contained in:
Norman Feske
2019-02-14 22:39:08 +01:00
parent 1f47e2823a
commit b3727a9b46
259 changed files with 747 additions and 743 deletions

View File

@ -28,10 +28,10 @@ namespace Hello {
struct Hello::Session_component : Genode::Rpc_object<Session>
{
void say_hello() {
void say_hello() override {
Genode::log("I am here... Hello."); }
int add(int a, int b) {
int add(int a, int b) override {
return a + b; }
};
@ -42,7 +42,7 @@ class Hello::Root_component
{
protected:
Session_component *_create_session(const char *)
Session_component *_create_session(const char *) override
{
Genode::log("creating hello session");
return new (md_alloc()) Session_component();