Skip to content

Commit f687ac4

Browse files
authored
to_string is in std::
1 parent d25dcfa commit f687ac4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ansi-c/ansi_c_entry_point.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ exprt::operandst build_function_environment(
5151
for(const auto & p : parameters)
5252
{
5353
irep_idt base_name=p.get_base_name().empty()?
54-
("argument#"+to_string(i)):p.get_base_name();
54+
("argument#"+std::to_string(i)):p.get_base_name();
5555
irep_idt identifier=id2string(goto_functionst::entry_point())+
5656
"::"+id2string(base_name);
5757

0 commit comments

Comments
 (0)