Skip to content

Commit

Permalink
fix: mingw format
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-olivier committed Jul 26, 2024
1 parent a8e6fc6 commit 9afc624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/format.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9afc624

Please sign in to comment.