mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-01 15:50:05 +03:00
rt: Change int to uint32_t. Put out burning tinderbox.
This commit is contained in:
@@ -230,7 +230,7 @@ struct type_param {
|
||||
return NULL;
|
||||
|
||||
type_param *ptrs = arena.alloc<type_param>(n_params);
|
||||
for (int i = 0; i < n_params; i++) {
|
||||
for (uint32_t i = 0; i < n_params; i++) {
|
||||
const type_desc *subtydesc = tydesc->first_param[i];
|
||||
ptrs[i].shape = subtydesc->shape;
|
||||
ptrs[i].tables = subtydesc->shape_tables;
|
||||
|
||||
Reference in New Issue
Block a user