File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1342,7 +1342,7 @@ exprt java_string_library_preprocesst::get_primitive_value_of_object(
1342
1342
// / \return An expression representing the object at position `index` of `argv`.
1343
1343
exprt java_string_library_preprocesst::get_object_at_index (
1344
1344
const exprt &argv,
1345
- int index)
1345
+ std:: size_t index)
1346
1346
{
1347
1347
dereference_exprt deref_objs (argv, argv.type ().subtype ());
1348
1348
pointer_typet empty_pointer=pointer_type (empty_typet ());
@@ -1390,7 +1390,7 @@ exprt java_string_library_preprocesst::get_object_at_index(
1390
1390
// / values of the argument at position `index` of `argv`.
1391
1391
exprt java_string_library_preprocesst::make_argument_for_format (
1392
1392
const exprt &argv,
1393
- int index,
1393
+ std:: size_t index,
1394
1394
const struct_typet &structured_type,
1395
1395
const source_locationt &loc,
1396
1396
const irep_idt &function_id,
Original file line number Diff line number Diff line change @@ -337,7 +337,7 @@ class java_string_library_preprocesst:public messaget
337
337
338
338
exprt make_argument_for_format (
339
339
const exprt &argv,
340
- int index,
340
+ std:: size_t index,
341
341
const struct_typet &structured_type,
342
342
const source_locationt &loc,
343
343
const irep_idt &function_id,
@@ -351,7 +351,7 @@ class java_string_library_preprocesst:public messaget
351
351
symbol_table_baset &symbol_table,
352
352
code_blockt &code);
353
353
354
- exprt get_object_at_index (const exprt &argv, int index);
354
+ exprt get_object_at_index (const exprt &argv, std:: size_t index);
355
355
356
356
codet make_init_from_array_code (
357
357
const code_typet &type,
You can’t perform that action at this time.
0 commit comments