Skip to content
Snippets Groups Projects
Commit 9a1cdd22 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Use std::string for the identifier consistently

parent 2f9b78e8
No related branches found
No related tags found
No related merge requests found
......@@ -579,7 +579,7 @@ class TimerMethod(ClassMember):
assert(knl is not None)
content = ["template <typename Stream>",
"void dump_timers(Stream& {}, const char* {}, bool {})".format(os, ident, reset),
"void dump_timers(Stream& {}, std::string {}, bool {})".format(os, ident, reset),
"{"]
dump_timers = [i for i in retrieve_cache_items(condition='dump_timers')]
content.extend(map(lambda x: ' ' + x, dump_timers))
......
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