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

This commit is contained in:
Andreas Kling 2023-02-20 18:26:54 +01:00
commit 68b5df6bf1
Notes: sideshowbarker 2024-07-17 03:59:29 +09:00
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);