From 1403a55e5d279f9810d6771571229246b0ece5e9 Mon Sep 17 00:00:00 2001 From: Peter Nelson Date: Fri, 18 Oct 2024 18:21:05 +0100 Subject: [PATCH] Codechange: Use uppercase naming for YAPF cost constant. --- src/pathfinder/yapf/yapf_costrail.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pathfinder/yapf/yapf_costrail.hpp b/src/pathfinder/yapf/yapf_costrail.hpp index 16fda72cb6..867fa80655 100644 --- a/src/pathfinder/yapf/yapf_costrail.hpp +++ b/src/pathfinder/yapf/yapf_costrail.hpp @@ -53,7 +53,7 @@ public: bool stopped_on_first_two_way_signal; protected: - static const int s_max_segment_cost = 10000; + static constexpr int MAX_SEGMENT_COST = 10000; CYapfCostRailT() : max_cost(0), disable_cache(false), stopped_on_first_two_way_signal(false) { @@ -522,7 +522,7 @@ no_entry_cost: // jump here at the beginning if the node has no parent (it is th break; } - if (segment_cost > s_max_segment_cost) { + if (segment_cost > MAX_SEGMENT_COST) { /* Potentially in the infinite loop (or only very long segment?). We should * not force it to finish prematurely unless we are on a regular tile. */ if (IsTileType(tf->new_tile, MP_RAILWAY)) {