mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-24 08:35:26 +00:00
Userland: Cast unused BackgroundAction::construct() results to void
User code does not need to keep this alive, so casting to void is safe. But maybe a bit weird.
This commit is contained in:
committed by
Andreas Kling
parent
92f8514a85
commit
d2024f04bd
@@ -649,7 +649,7 @@ bool FileSystemModel::fetch_thumbnail_for(Node const& node)
|
||||
|
||||
auto weak_this = make_weak_ptr();
|
||||
|
||||
Threading::BackgroundAction<ErrorOr<NonnullRefPtr<Gfx::Bitmap>>>::construct(
|
||||
(void)Threading::BackgroundAction<ErrorOr<NonnullRefPtr<Gfx::Bitmap>>>::construct(
|
||||
[path](auto&) {
|
||||
return render_thumbnail(path);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user