diff options
| author | ruki <[email protected]> | 2023-09-17 21:41:32 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-09-17 21:41:39 +0800 |
| commit | 97831c56d2ba3a719de0c80d9bcdc8db9163eb00 (patch) | |
| tree | aedaa7962d1c52bab5c916624bf89e7cf0b6e56c /xmake/modules/private | |
| parent | a9e9084863ffc3d9e6aeb044e3f92a7deaa78036 (diff) | |
add pedantic warning #4209
Diffstat (limited to 'xmake/modules/private')
| -rw-r--r-- | xmake/modules/private/check/checkers/api/target/warnings.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/modules/private/check/checkers/api/target/warnings.lua b/xmake/modules/private/check/checkers/api/target/warnings.lua index 4e6cf5794..016a3e6a3 100644 --- a/xmake/modules/private/check/checkers/api/target/warnings.lua +++ b/xmake/modules/private/check/checkers/api/target/warnings.lua @@ -23,5 +23,6 @@ import(".api_checker") function main(opt) opt = opt or {} - api_checker.check_targets("warnings", table.join(opt, {values = {"none", "less", "more", "all", "allextra", "everything", "error"}})) + api_checker.check_targets("warnings", table.join(opt, {values = { + "none", "less", "more", "extra", "all", "allextra", "everything", "pedantic", "error"}})) end |
