BAN: Mark RefPtr and WeakPtr operator bool() as explicit

This commit is contained in:
2024-06-17 20:19:36 +03:00
parent dafd2fecf7
commit 511fc870a1
4 changed files with 13 additions and 5 deletions

View File

@@ -361,7 +361,7 @@ namespace Kernel
bool TTY::is_initialized()
{
return s_tty;
return !!s_tty;
}
}