From bf6f57d336be566373258365fedf231899f7e417 Mon Sep 17 00:00:00 2001 From: x7z4w Date: Mon, 24 Nov 2025 16:34:49 +0000 Subject: [PATCH] [core] Fix warning Signed-off-by: x7z4w --- libs/indexer/road_shields_parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/indexer/road_shields_parser.cpp b/libs/indexer/road_shields_parser.cpp index 87835d492..500965a97 100644 --- a/libs/indexer/road_shields_parser.cpp +++ b/libs/indexer/road_shields_parser.cpp @@ -355,8 +355,8 @@ public: Entry(std::string_view name, HighwayClass highwayClass, RoadShieldType type, bool isRedundant = false, bool shouldTrimName = false) : m_name(name), m_type(type), m_highwayClass(highwayClass), m_isRedundant(isRedundant), m_shouldTrimName(shouldTrimName) {} std::string_view m_name; - HighwayClass m_highwayClass = HighwayClass::Undefined; RoadShieldType m_type = RoadShieldType::Default; + HighwayClass m_highwayClass = HighwayClass::Undefined; /* Hides a specific secondary etc. sign, if there is a primary one */ bool m_isRedundant = false; bool m_shouldTrimName = false;