1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-08 15:07:35 +00:00

Shell: Fix (and paper over) various const-correctness issues

This commit is contained in:
Andreas Kling 2023-02-20 18:26:54 +01:00
parent 39a1702c99
commit 68b5df6bf1
9 changed files with 81 additions and 81 deletions

View file

@ -96,7 +96,7 @@ void Job::set_signalled(int sig)
on_exit(*this);
}
void Job::unblock() const
void Job::unblock()
{
if (!m_exited && on_exit)
on_exit(*this);