Yes, I *do* mean -Wno-maybe-uninitialized!

This commit is contained in:
Lior Halphon 2020-09-17 23:25:56 +03:00 committed by GitHub
parent abea3888db
commit faf91508e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ endif
# GCC's implementation of this warning has false positives, so we skip it
ifneq ($(shell $(CC) --version 2>&1 | grep "gcc"), )
WARNINGS += -no-maybe-uninitialized
WARNINGS += -Wno-maybe-uninitialized
endif
CFLAGS += $(WARNINGS)