From 402e4929b07ff2781a358168310c0952924a5c2c Mon Sep 17 00:00:00 2001 From: prharvey <2677507+prharvey@users.noreply.github.com> Date: Thu, 28 Dec 2023 22:24:28 -0700 Subject: [PATCH] clang-tidy fix --- src/display.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/display.cpp b/src/display.cpp index 34184cfb5b6f8..72ae41d2cbadf 100644 --- a/src/display.cpp +++ b/src/display.cpp @@ -1458,6 +1458,7 @@ std::string display::colorized_compass_text( const cardinal_direction dir, int w struct mtype_id_string_less { bool operator()( const mtype_id &lhs, const mtype_id &rhs ) const { + // NOLINTNEXTLINE(cata-use-localized-sorting) return lhs.str() < rhs.str(); } };