Skip to content

Commit 6cd3fbe

Browse files
committed
Fix regression
It seems, that after rebasing on @93819d5, `node_map_` map started being order-sensitive what prevents us from converting it to hashmap Signed-off-by: Szymon Gizler <[email protected]>
1 parent 2864c2c commit 6cd3fbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/drt/src/io/GuideProcessor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ class GuidePathFinder
433433
RouterConfiguration* router_cfg_{nullptr};
434434
frNet* net_{nullptr};
435435
bool force_feed_through_{false};
436-
boost::unordered_flat_map<Point3D, std::set<int>> node_map_;
436+
std::map<Point3D, std::set<int>> node_map_;
437437
int guide_count_{0};
438438
int node_count_{0};
439439
bool allow_warnings_{false};

0 commit comments

Comments
 (0)