Skip to content

Commit a8c17b4

Browse files
author
clin99
committed
Fix the naming error in dump
1 parent 8461b47 commit a8c17b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

taskflow.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1170,7 +1170,7 @@ std::string BasicTaskflow<Traits>::dump() const {
11701170

11711171
os << " -> ";
11721172

1173-
if(s->name().empty()) os << '\"' << &node << '\"';
1173+
if(s->name().empty()) os << '\"' << s << '\"';
11741174
else os << std::quoted(s->name());
11751175

11761176
os << ";\n";

0 commit comments

Comments
 (0)