mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +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: 31ea222f97
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…
Add table
Add a link
Reference in a new issue