Update event loop to not return any result

This commit is contained in:
kayomn 2023-03-02 23:59:49 +00:00
parent e9c877956e
commit fc7a5fa89f

View File

@ -17,7 +17,7 @@ export namespace turtle {
return false;
}
static int run(coral::slice<char const> const & title, coral::closure<int(event_loop &)> execute) {
static void run(coral::slice<char const> const & title, coral::closure<void(event_loop &)> execute) {
event_loop loop{title};
return execute(loop);