summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/get-supported-arguments.md
Commit message (Collapse)AuthorAgeFilesLines
* Collated release note snippets to main file.Jussi Pakkanen2017-10-081-23/+0
|
* Add Compiler.get_supported_arguments()Daniel Stone2017-08-311-0/+23
Add a helper for the common pattern of: args_to_use = [] foreach arg : candidate_args if cc.has_argument(arg) args_to_use += arg endif endforeach Replaced with: args_to_use = cc.get_supported_arguments(candidate_args)