Skip to content

Commit 231df80

Browse files
authored
Update MinGW.md
Add "__GNUC__" to the defines array
1 parent 8979a6e commit 231df80

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Documentation/LanguageServer/MinGW.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ For developers using MinGW on Windows, we recommend you start with the following
1717
],
1818
"defines": [
1919
"_DEBUG",
20-
"UNICODE"
20+
"UNICODE",
21+
"__GNUC__"
2122
],
2223
"browse": {
2324
"path": [
@@ -51,7 +52,8 @@ For C projects, simply remove the c++ lines:
5152
],
5253
"defines": [
5354
"_DEBUG",
54-
"UNICODE"
55+
"UNICODE",
56+
"__GNUC__"
5557
],
5658
"browse": {
5759
"path": [

0 commit comments

Comments
 (0)