Skip to content

Commit

Permalink
resolve comment
Browse files Browse the repository at this point in the history
  • Loading branch information
tian-lt committed Nov 28, 2024
1 parent 1114f8b commit 7d28f8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CalcViewModel/DataLoaders/CurrencyHttpClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ namespace CalculatorApp::ViewModel::DataLoaders
assert(false && "not implemented.");
}

T&& await_resume() noexcept
T await_resume() noexcept
{
return std::forward<T>(Value);
return std::move(Value);
}
};

Expand Down

0 comments on commit 7d28f8b

Please sign in to comment.