[core] Fix warning

Signed-off-by: x7z4w <x7z4w@noreply.codeberg.org>
This commit is contained in:
x7z4w
2025-11-24 16:34:49 +00:00
parent 6b76e9826b
commit bf6f57d336

View File

@@ -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) {} 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; std::string_view m_name;
HighwayClass m_highwayClass = HighwayClass::Undefined;
RoadShieldType m_type = RoadShieldType::Default; RoadShieldType m_type = RoadShieldType::Default;
HighwayClass m_highwayClass = HighwayClass::Undefined;
/* Hides a specific secondary etc. sign, if there is a primary one */ /* Hides a specific secondary etc. sign, if there is a primary one */
bool m_isRedundant = false; bool m_isRedundant = false;
bool m_shouldTrimName = false; bool m_shouldTrimName = false;