resolve comment

This commit is contained in:
Tian Liao 2024-11-28 14:05:47 +08:00
commit 7d28f8bc4b

View file

@ -21,9 +21,9 @@ namespace CalculatorApp::ViewModel::DataLoaders
assert(false && "not implemented."); assert(false && "not implemented.");
} }
T&& await_resume() noexcept T await_resume() noexcept
{ {
return std::forward<T>(Value); return std::move(Value);
} }
}; };