summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBret Curtis <psi29a@gmail.com>2023-04-25 12:20:39 +0200
committerBret Curtis <psi29a@gmail.com>2023-04-25 13:15:31 +0200
commit735be797d1075329cc12de79d4da041c6eeebc10 (patch)
tree2726274300353b55111761e560087254f69caab2
parente6e50f729c948d78853065d85d479a894d96b445 (diff)
clang-tidy fixuse_std_locale
-rw-r--r--apps/mwiniimporter/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/mwiniimporter/main.cpp b/apps/mwiniimporter/main.cpp
index 738c832db2..0beb2b38cc 100644
--- a/apps/mwiniimporter/main.cpp
+++ b/apps/mwiniimporter/main.cpp
@@ -18,8 +18,8 @@ int main(int argc, char* argv[])
#else
// Include on Windows only
-#include <locale>
#include <codecvt>
+#include <locale>
class utf8argv
{