Skip to content
Snippets Groups Projects
Commit c2349b7d authored by Jonathan Lambrechts's avatar Jonathan Lambrechts
Browse files

fix indent in GenApi.py

parent b392c57a
Branches
Tags
No related merge requests found
...@@ -437,7 +437,7 @@ class API: ...@@ -437,7 +437,7 @@ class API:
+", ".join(list((a.c for a in args+(oint("ierr"),))))+"){\n") +", ".join(list((a.c for a in args+(oint("ierr"),))))+"){\n")
if rtype: if rtype:
f.write(" "+ rtype.rtype_c + " result_api_;\n") f.write(" "+ rtype.rtype_c + " result_api_;\n")
f.write("if(ierr) *ierr = 0;\n"); f.write(" if(ierr) *ierr = 0;\n");
f.write(" try {\n"); f.write(" try {\n");
f.write("".join((a.c_cpp_pre for a in args))) f.write("".join((a.c_cpp_pre for a in args)))
if rtype: if rtype:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment