mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:27:35 +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:
parent
92f8514a85
commit
d2024f04bd
7 changed files with 7 additions and 7 deletions
|
@ -163,7 +163,7 @@ void FileProvider::build_filesystem_cache()
|
|||
m_building_cache = true;
|
||||
m_work_queue.enqueue("/");
|
||||
|
||||
Threading::BackgroundAction<int>::construct(
|
||||
(void)Threading::BackgroundAction<int>::construct(
|
||||
[this](auto&) {
|
||||
String slash = "/";
|
||||
auto timer = Core::ElapsedTimer::start_new();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue