mirror of
https://github.com/RGBCube/serenity
synced 2025-06-29 11:22:13 +00:00
LibWeb: Cast unused smart-pointer return values to void
This commit is contained in:
parent
31ea222f97
commit
7196570f9b
10 changed files with 116 additions and 116 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue