Skip to content

Commit

Permalink
Disable c++20 compatibility warnings
Browse files Browse the repository at this point in the history
As suggested by andrei8l
  • Loading branch information
Arkaeriit committed May 27, 2023
1 parent da7e605 commit b9fad0a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
# RELEASE_FLAGS is flags for release builds.
RELEASE_FLAGS =
WARNINGS = \
-Werror -Wall -Wextra \
-Wall -Wextra \
-Wformat-signedness \
-Wlogical-op \
-Wmissing-declarations \
Expand All @@ -110,7 +110,8 @@ WARNINGS = \
-Wunused-macros \
-Wzero-as-null-pointer-constant \
-Wno-unknown-warning-option \
-Wno-dangling-reference
-Wno-dangling-reference \
-Wno-c++20-compat
# Uncomment below to disable warnings
#WARNINGS = -w
DEBUGSYMS = -g
Expand Down

0 comments on commit b9fad0a

Please sign in to comment.