mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 11:48:32 +00:00
LibWeb: Cast unused smart-pointer return values to void
This commit is contained in:
committed by
Andreas Kling
parent
31ea222f97
commit
7196570f9b
@@ -390,7 +390,7 @@ void HTMLScriptElement::prepare_script()
|
||||
|
||||
// 3. Remove the first element from this list of scripts that will execute in order
|
||||
// as soon as possible.
|
||||
m_preparation_time_document->scripts_to_execute_as_soon_as_possible().take_first();
|
||||
(void)m_preparation_time_document->scripts_to_execute_as_soon_as_possible().take_first();
|
||||
|
||||
// 4. If this list of scripts that will execute in order as soon as possible is still
|
||||
// not empty and the first entry has already been marked as ready, then jump back
|
||||
|
||||
Reference in New Issue
Block a user