mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-04 09:22:53 +00:00
LibWeb: Cast unused smart-pointer return values to void
This commit is contained in:
parent
31ea222f97
commit
7196570f9b
Notes:
sideshowbarker
2024-07-17 23:08:47 +09:00
Author: https://github.com/AtkinsSJ
Commit: 7196570f9b
Pull-request: https://github.com/SerenityOS/serenity/pull/11151
10 changed files with 116 additions and 116 deletions
|
@ -104,7 +104,7 @@ JS_DEFINE_NATIVE_FUNCTION(WebAssemblyObject::validate)
|
|||
// Drop the module from the cache, we're never going to refer to it.
|
||||
ScopeGuard drop_from_cache {
|
||||
[&] {
|
||||
s_compiled_modules.take_last();
|
||||
(void)s_compiled_modules.take_last();
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue