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

@ -138,7 +138,7 @@ class Terminal::Session_component : public Rpc_object<Session, Session_component
void size_changed_sigh(Signal_context_capability) override { }
void connected_sigh(Signal_context_capability sigh)
void connected_sigh(Signal_context_capability sigh) override
{
/*
* Immediately reflect connection-established signal to the
@ -162,7 +162,7 @@ class Terminal::Root_component : public Genode::Root_component<Session_component
protected:
Session_component *_create_session(const char *)
Session_component *_create_session(const char *) override
{
size_t const io_buffer_size = 4096;
return new (md_alloc()) Session_component(_ram, _rm, io_buffer_size);