We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5068019 commit e3ce752Copy full SHA for e3ce752
src/goto-programs/graphml_goto_trace.cpp
@@ -149,7 +149,7 @@ void convert(
149
const goto_tracet &goto_trace,
150
graphmlt &graphml)
151
{
152
- const unsigned sink=graphml.add_node();
+ const graphmlt::node_indext sink=graphml.add_node();
153
graphml[sink].node_name="sink";
154
graphml[sink].thread_nr=0;
155
graphml[sink].is_violation=false;
@@ -190,7 +190,7 @@ void convert(
190
continue;
191
}
192
193
- const unsigned node=graphml.add_node();
+ const graphmlt::node_indext node=graphml.add_node();
194
graphml[node].node_name=
195
i2string(it->pc->location_number)+"."+i2string(it->step_nr);
196
graphml[node].file=source_location.get_file();
0 commit comments