Skip to content

Commit 09fc9c0

Browse files
committed
Make Console::m_rows/m_columns const for now.
1 parent e38f40a commit 09fc9c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Kernel/Console.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ class Console final : public CharacterDevice {
1515
private:
1616
void putChar(char);
1717

18-
byte m_rows { 25 };
19-
byte m_columns { 80 };
18+
const byte m_rows { 25 };
19+
const byte m_columns { 80 };
2020
byte m_cursorRow { 0 };
2121
byte m_cursorColumn { 0 };
2222

0 commit comments

Comments
 (0)