diff options
| author | heather7283 <142042427+heather7283@users.noreply.github.com> | 2025-05-03 22:51:10 +0400 |
|---|---|---|
| committer | Jussi Pakkanen <jussi.pakkanen@mailbox.org> | 2025-05-04 19:31:58 +0300 |
| commit | f01ae767d50ed4b25ad33c02b5bf177fb8ad2e23 (patch) | |
| tree | 566e5efa60bbf3a186ed56b5571cf1c35562c200 /mesonbuild/templates/cpptemplates.py | |
| parent | 41bda4385fc302dbcac1ee29469eadc9b1a3ac22 (diff) | |
| download | meson-f01ae767d50ed4b25ad33c02b5bf177fb8ad2e23.tar.gz | |
templates: add missing space to cpp template
Diffstat (limited to 'mesonbuild/templates/cpptemplates.py')
| -rw-r--r-- | mesonbuild/templates/cpptemplates.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/templates/cpptemplates.py b/mesonbuild/templates/cpptemplates.py index 1bfa2ae4f..cdfbbf8c0 100644 --- a/mesonbuild/templates/cpptemplates.py +++ b/mesonbuild/templates/cpptemplates.py @@ -16,7 +16,7 @@ hello_cpp_template = '''#include <iostream> int main(int argc, char **argv) {{ if (argc != 1) {{ - std::cout << argv[0] << "takes no arguments.\\n"; + std::cout << argv[0] << " takes no arguments.\\n"; return 1; }} std::cout << "This is project " << PROJECT_NAME << ".\\n"; |
