Skip to content

Commit 5a0cc0d

Browse files
authored
Use std::to_string instead of removed i2string
1 parent f687ac4 commit 5a0cc0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/goto-programs/graphml_witness.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ void graphml_witnesst::operator()(const symex_target_equationt &equation)
415415

416416
const graphmlt::node_indext node=graphml.add_node();
417417
graphml[node].node_name=
418-
i2string(it->source.pc->location_number)+"."+i2string(step_nr);
418+
std::to_string(it->source.pc->location_number)+"."+std::to_string(step_nr);
419419
graphml[node].file=source_location.get_file();
420420
graphml[node].line=source_location.get_line();
421421
graphml[node].thread_nr=it->source.thread_nr;

0 commit comments

Comments
 (0)