File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 8
8
9
9
#include < util/arith_tools.h>
10
10
#include < util/simplify_expr.h>
11
+ #include < util/string2int.h>
11
12
#include < util/byte_operators.h>
12
13
#include < util/pointer_offset_size.h>
13
14
#include < util/expr_util.h>
@@ -368,7 +369,7 @@ void path_symext::symex_va_arg_next(
368
369
*/
369
370
if (has_prefix (id2string (id), base))
370
371
id=base
371
- +i2string (
372
+ +std::to_string (
372
373
safe_string2unsigned (
373
374
std::string (id2string (id), base.size (), std::string::npos))
374
375
+1 );
@@ -787,7 +788,7 @@ void path_symext::function_call_rec(
787
788
exprt rhs=*call_arguments_it;
788
789
789
790
irep_idt id=id2string (function_identifier)+" ::va_arg"
790
- +i2string (va_count);
791
+ +std::to_string (va_count);
791
792
792
793
symbolt symbol;
793
794
symbol.name =id;
You can’t perform that action at this time.
0 commit comments