mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
LibVT: Cast unused smart-pointer return value to void
This commit is contained in:
parent
0e2fa09f52
commit
31ea222f97
Notes:
sideshowbarker
2024-07-17 23:08:51 +09:00
Author: https://github.com/AtkinsSJ Commit: https://github.com/SerenityOS/serenity/commit/31ea222f971 Pull-request: https://github.com/SerenityOS/serenity/pull/11151
1 changed files with 1 additions and 1 deletions
|
@ -1568,7 +1568,7 @@ void Terminal::set_size(u16 columns, u16 rows)
|
|||
if (m_history.size() >= 2 && m_history[m_history.size() - 2].termination_column().has_value())
|
||||
break;
|
||||
--extra_lines;
|
||||
m_history.take_last();
|
||||
(void)m_history.take_last();
|
||||
continue;
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue