diff options
author | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-02-19 09:44:14 -0800 |
---|---|---|
committer | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-02-23 14:09:28 -0800 |
commit | 5c6e23141289377dbc6ce9d799b0b92ed6234a19 (patch) | |
tree | 220552f047334e5b05055f11760ae38f364e24c4 /fpga_interchange | |
parent | 46b38f8a403e071d2d9f2bf50e08ef0e0463d845 (diff) | |
download | nextpnr-5c6e23141289377dbc6ce9d799b0b92ed6234a19.tar.gz nextpnr-5c6e23141289377dbc6ce9d799b0b92ed6234a19.tar.bz2 nextpnr-5c6e23141289377dbc6ce9d799b0b92ed6234a19.zip |
Remove some signedness warnings.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
Diffstat (limited to 'fpga_interchange')
-rw-r--r-- | fpga_interchange/arch.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpga_interchange/arch.cc b/fpga_interchange/arch.cc index b1d5090a..4cffd6ca 100644 --- a/fpga_interchange/arch.cc +++ b/fpga_interchange/arch.cc @@ -217,7 +217,7 @@ void Arch::setup_byname() const for (int i = 0; i < chip_info->tiles.ssize(); i++) { auto &tile = chip_info->tiles[i]; auto &tile_type = chip_info->tile_types[tile.type]; - for (int j = 0; j < tile_type.site_types.size(); j++) { + for (size_t j = 0; j < tile_type.site_types.size(); j++) { auto &site = chip_info->sites[tile.sites[j]]; site_by_name[id(site.name.get())] = std::make_pair(i, j); } |