All: Clear lines with only whitspace in them

This commit is contained in:
Bananymous
2023-09-09 22:52:03 +03:00
parent 1fcf122c50
commit 921d95d18f
67 changed files with 95 additions and 119 deletions

View File

@@ -42,7 +42,7 @@ namespace Kernel
virtual uint32_t width() const override;
virtual uint32_t height() const override;
virtual void putchar(uint8_t) override;
virtual void update() override;
protected:
@@ -55,7 +55,7 @@ namespace Kernel
private:
BAN::String m_name;
Serial m_serial;
public:
virtual dev_t rdev() const override { return m_rdev; }
private:

View File

@@ -11,7 +11,7 @@
namespace Kernel
{
class VirtualTTY : public TTY
{
public:

View File

@@ -8,5 +8,5 @@ namespace Kernel
bool canonical { true };
bool echo { true };
};
}