From 9afc6244d98562a4cc1481efbb8ccb0cfff316c4 Mon Sep 17 00:00:00 2001 From: Martin Olivier Date: Sat, 27 Jul 2024 00:07:44 +0200 Subject: [PATCH] fix: mingw format --- src/format.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/format.cpp b/src/format.cpp index 46706e4..6cec6aa 100644 --- a/src/format.cpp +++ b/src/format.cpp @@ -21,7 +21,7 @@ static void replace_occurrences(std::string &input, const std::string &keyword, } } -#if (defined(_WIN32) || defined(_WIN64)) +#if (defined(_WIN32) || defined(_WIN64)) && !defined(__MINGW32__) static void add_space_after_comma(std::string &input) { std::string result;