diff options
Diffstat (limited to 'xmake/plugins/check/checkers/api/target/fpmodels.lua')
| -rw-r--r-- | xmake/plugins/check/checkers/api/target/fpmodels.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xmake/plugins/check/checkers/api/target/fpmodels.lua b/xmake/plugins/check/checkers/api/target/fpmodels.lua index 25c6c239b..61231109e 100644 --- a/xmake/plugins/check/checkers/api/target/fpmodels.lua +++ b/xmake/plugins/check/checkers/api/target/fpmodels.lua @@ -21,6 +21,7 @@ -- imports import(".api_checker") -function main() - api_checker.check_targets("fpmodels", {values = {"none", "precise", "fast", "strict", "except", "noexcept"}}) +function main(opt) + opt = opt or {} + api_checker.check_targets("fpmodels", table.join(opt, {values = {"none", "precise", "fast", "strict", "except", "noexcept"}})) end |
