mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-21 05:43:10 -07:00
Remove unused "this" in async lambda expression (#1094)
This commit is contained in:
parent
172bf08122
commit
1b72ecb6b3
1 changed files with 1 additions and 1 deletions
|
@ -559,7 +559,7 @@ future<pair<bool, wstring>> UnitConverter::RefreshCurrencyRatios()
|
|||
}
|
||||
|
||||
shared_future<bool> sharedLoadResult = loadDataResult.share();
|
||||
return async([this, currencyDataLoader, sharedLoadResult]() {
|
||||
return async([currencyDataLoader, sharedLoadResult]() {
|
||||
sharedLoadResult.wait();
|
||||
bool didLoad = sharedLoadResult.get();
|
||||
wstring timestamp;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue