diff options
author | Christoph Behle <behlec@gmail.com> | 2018-06-11 20:05:07 +0200 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-06-12 00:14:54 +0000 |
commit | 219fcfad1457ec475961799724ebc6d2e17541b0 (patch) | |
tree | e96bfd0a855e73935318c370ae79ed478764ad98 | |
parent | 47c3a26915ffa12b3a9a14a3da485c1a0d5ab32c (diff) | |
download | meson-219fcfad1457ec475961799724ebc6d2e17541b0.zip meson-219fcfad1457ec475961799724ebc6d2e17541b0.tar.gz meson-219fcfad1457ec475961799724ebc6d2e17541b0.tar.bz2 |
Document change in reference manual.
-rw-r--r-- | docs/markdown/Reference-manual.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 26d91c5..f0fe93e 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -1575,6 +1575,8 @@ the following methods: - `get_define(definename)` returns the given preprocessor symbol's value as a string or empty string if it is not defined. + The method will concatenate string literals as the compiler would. + E.g. `"a" "b"` will become `"ab"`. - `get_id()` returns a string identifying the compiler. For example, `gcc`, `msvc`, [and more](Reference-tables.html#compiler-ids). |