Skip to content
Snippets Groups Projects
Commit 2fe70f8a authored by René Heß's avatar René Heß
Browse files

[Bugfix] Fix typo

parent 30fc8321
No related branches found
No related tags found
No related merge requests found
......@@ -210,7 +210,7 @@ def generate_standalone_code_google_benchmark(sf, filename):
arguments = ', '.join(sf.interface.signature_args)
if len(arguments) > 0:
arguments = ', ' + arguments
arguments = 'const char* buffer0, const char* buffer 1' + arguments
arguments = 'const char* buffer0, const char* buffer1' + arguments
f.write("void sumfact_kernel({})\n".format(arguments))
for line in knl.member.lines[1:]:
f.write("{}\n".format(line))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment