Skip to content

Commit 4dc0cf0

Browse files
committed
Suppress GCC error for pointer types
1 parent dc338d1 commit 4dc0cf0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/alsp_src/unix/gcc_makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ endif
2424
# -Wno-unused-result -Wno-unused-but-set-variable - Fix someday.
2525

2626
CFLAGS += -fPIC -MMD -Wall -Wextra \
27-
-Wno-unused-parameter
27+
-Wno-unused-parameter -Wno-incompatible-pointer-types

core/alsp_src/win32/gcc_makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ CC=gcc -m32
1616

1717
# Added -Wno-error=pointer-sign to avoid blocking errors in socket code
1818

19-
CFLAGS += -MMD -Wall -Wextra -Wno-unused-parameter
19+
CFLAGS += -MMD -Wall -Wextra -Wno-unused-parameter -Wno-incompatible-pointer-types

0 commit comments

Comments
 (0)