Skip to content

Commit e3ce752

Browse files
committed
proper node index type
1 parent 5068019 commit e3ce752

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/goto-programs/graphml_goto_trace.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ void convert(
149149
const goto_tracet &goto_trace,
150150
graphmlt &graphml)
151151
{
152-
const unsigned sink=graphml.add_node();
152+
const graphmlt::node_indext sink=graphml.add_node();
153153
graphml[sink].node_name="sink";
154154
graphml[sink].thread_nr=0;
155155
graphml[sink].is_violation=false;
@@ -190,7 +190,7 @@ void convert(
190190
continue;
191191
}
192192

193-
const unsigned node=graphml.add_node();
193+
const graphmlt::node_indext node=graphml.add_node();
194194
graphml[node].node_name=
195195
i2string(it->pc->location_number)+"."+i2string(it->step_nr);
196196
graphml[node].file=source_location.get_file();

0 commit comments

Comments
 (0)