Commit 6a7ff83c70c290f9482a1551069a9781969e4b61
Don't fail build due to unused parameters
There are a bunch of those in libvle.
Author: xaizek
Author date (UTC): 2026-08-02 13:44
Committer name: xaizek
Committer date (UTC): 2026-08-02 13:44
Parent(s): b8e9e4aba7b4e64a3b1049b1f8960cfa77a675f3
Signing key: 99DC5E4DB05F6BE2
Tree: 4a361190f16909adc01c342d9edd9ac683f181b1
| File |
Lines added |
Lines deleted |
| Makefile |
1 |
1 |
| File Makefile changed (mode: 100644) (index 621b1ad..2fb655e) |
| 1 |
|
CFLAGS += -Wall -Wextra -Werror -MMD -Isrc/ -Ilibs/ |
|
|
1 |
|
CFLAGS += -Wall -Wextra -Werror -Wno-unused-parameter -MMD -Isrc/ -Ilibs/ |
| 2 |
2 |
CXXFLAGS += -std=c++11 $(CFLAGS) |
CXXFLAGS += -std=c++11 $(CFLAGS) |
| 3 |
3 |
LDFLAGS += -lcursesw -lreadline |
LDFLAGS += -lcursesw -lreadline |
| 4 |
4 |
|
|