Remove return value of Log_session::write

Fixes #3749
This commit is contained in:
Norman Feske
2020-05-05 13:51:05 +02:00
parent bbc21cf063
commit a9f0e47ea3
12 changed files with 22 additions and 39 deletions

View File

@@ -46,9 +46,9 @@ class Depot_deploy::Log_session_component : public Rpc_object<Log_session>
_child(child)
{ }
size_t write(String const &line) override
void write(String const &line) override
{
return _child.log_session_write(line, _label);
_child.log_session_write(line, _label);
}
};