> + MirShell *const m_shell;
That's a constant pointer to a (non-constant) MirShell
> "const MirShell *m_shell" please
That's a (non-constant) pointer to a constant MirShell
Do you really want "const (MirShell *)m_shell?
« Back to merge proposal
> + MirShell *const m_shell;
That's a constant pointer to a (non-constant) MirShell
> "const MirShell *m_shell" please
That's a (non-constant) pointer to a constant MirShell
Do you really want "const (MirShell *)m_shell?