summaryrefslogtreecommitdiff
path: root/mesonbuild/templates/cpptemplates.py
diff options
context:
space:
mode:
authorheather7283 <142042427+heather7283@users.noreply.github.com>2025-05-03 22:51:10 +0400
committerJussi Pakkanen <jussi.pakkanen@mailbox.org>2025-05-04 19:31:58 +0300
commitf01ae767d50ed4b25ad33c02b5bf177fb8ad2e23 (patch)
tree566e5efa60bbf3a186ed56b5571cf1c35562c200 /mesonbuild/templates/cpptemplates.py
parent41bda4385fc302dbcac1ee29469eadc9b1a3ac22 (diff)
downloadmeson-f01ae767d50ed4b25ad33c02b5bf177fb8ad2e23.tar.gz
templates: add missing space to cpp template
Diffstat (limited to 'mesonbuild/templates/cpptemplates.py')
-rw-r--r--mesonbuild/templates/cpptemplates.py2
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";