summaryrefslogtreecommitdiff
path: root/mesonbuild/templates/objcpptemplates.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/templates/objcpptemplates.py')
-rw-r--r--mesonbuild/templates/objcpptemplates.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/templates/objcpptemplates.py b/mesonbuild/templates/objcpptemplates.py
index 45e70c6c9..1fdfa06a4 100644
--- a/mesonbuild/templates/objcpptemplates.py
+++ b/mesonbuild/templates/objcpptemplates.py
@@ -48,7 +48,7 @@ lib_objcpp_test_template = '''#import <{header_file}>
#import <iostream>
int main(int argc, char **argv) {{
- if(argc != 1) {{
+ if (argc != 1) {{
std::cout << argv[0] << " takes no arguments." << std::endl;
return 1;
}}
@@ -113,7 +113,7 @@ hello_objcpp_template = '''#import <iostream>
#define PROJECT_NAME "{project_name}"
int main(int argc, char **argv) {{
- if(argc != 1) {{
+ if (argc != 1) {{
std::cout << argv[0] << " takes no arguments." << std::endl;
return 1;
}}