mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-24 06:59:10 +00:00
Codefix a6f412c6
: Missing this-> in YAPF
This commit is contained in:
committed by
rubidium42
parent
07e8547eb5
commit
883be19865
@@ -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;
|
||||
|
Reference in New Issue
Block a user