1
0
Fork 0

Codefix a6f412c6: Missing this-> in YAPF

pull/13045/head
Jonathan G Rennison 2024-10-29 17:29:15 +00:00 committed by rubidium42
parent 07e8547eb5
commit 883be19865
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ struct CSegmentCostCacheT : public CSegmentCostCacheBase {
Tsegment *item = this->map.Find(key);
if (item == nullptr) {
*found = false;
item = &heap.emplace_back(key);
item = &this->heap.emplace_back(key);
this->map.Push(*item);
} else {
*found = true;