diff options
author | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2017-09-26 10:00:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-26 10:00:28 +0000 |
commit | 92318c7660ef9048e5aa7ec9921730abe6cd471d (patch) | |
tree | 280b5e279a026dfca3cde808a192d5f4cc1acb18 /docs/markdown | |
parent | 011adc4bd277335ea5829f372e61c25bb2b49595 (diff) | |
download | meson-92318c7660ef9048e5aa7ec9921730abe6cd471d.zip meson-92318c7660ef9048e5aa7ec9921730abe6cd471d.tar.gz meson-92318c7660ef9048e5aa7ec9921730abe6cd471d.tar.bz2 |
docs: get_supported_arguments was added in 0.43.0
Closes https://github.com/mesonbuild/meson/issues/2371
[noci]
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Reference-manual.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index f3640f0..7aa4bca 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -1309,9 +1309,9 @@ the following methods: - `get_id()` returns a string identifying the compiler. For example, `gcc`, `msvc`, [and more](Compiler-properties.md#compiler-id). -- `get_supported_arguments(list_of_string)` returns an array - containing only the arguments supported by the compiler, as if - `has_argument` were called on them individually. +- `get_supported_arguments(list_of_string)` *(added 0.43.0)* returns + an array containing only the arguments supported by the compiler, + as if `has_argument` were called on them individually. - `has_argument(argument_name)` returns true if the compiler accepts the specified command line argument, that is, can compile code |