1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-13 17:49:10 +00:00

Codefix a6f412c6: Missing this-> in YAPF

This commit is contained in:
Jonathan G Rennison
2024-10-29 17:29:15 +00:00
committed by rubidium42
parent 07e8547eb5
commit 883be19865

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