diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2024-10-17 19:42:29 -0500 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2024-10-17 19:42:29 -0500 |
commit | 8249b28bea29e8ce17eac12776a60ec3f9e47176 (patch) | |
tree | 98318d7564b5f618cfb59e23cc6b918fcab88ee8 /cmake | |
parent | b32e83ece42cec5aa9dee370bcdf349d23dbc8ba (diff) |
Rename InvalidInput to ArgumentInvalid.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/warnings.cmake | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cmake/warnings.cmake b/cmake/warnings.cmake index cd3cdf9..da2c9ab 100644 --- a/cmake/warnings.cmake +++ b/cmake/warnings.cmake @@ -3,8 +3,9 @@ set(FUD_WARNINGS -Werror -Wall -Wextra - -pedantic - -pedantic-errors + # -pedantic + -Wno-error=pedantic + # -pedantic-errors -Wstack-usage=2048 # GCC specific -Wvla # variable modified types don't play nice in C++ # types |