From 883be19865dcd19394c7d72f17e466f51a7beab7 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Tue, 29 Oct 2024 17:29:15 +0000 Subject: [PATCH] Codefix a6f412c6: Missing this-> in YAPF --- src/pathfinder/yapf/yapf_costcache.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pathfinder/yapf/yapf_costcache.hpp b/src/pathfinder/yapf/yapf_costcache.hpp index e68c6083aa..9778024f3e 100644 --- a/src/pathfinder/yapf/yapf_costcache.hpp +++ b/src/pathfinder/yapf/yapf_costcache.hpp @@ -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;