Fix compiler warning

This commit is contained in:
Eddie Hung 2018-12-29 00:21:18 -08:00
parent 39a5019f88
commit 57f8c216b5

View File

@ -442,6 +442,8 @@ BelId Arch::getBelByLocation(Loc loc) const
BelRange Arch::getBelsByTile(int x, int y) const
{
BelRange br;
br.b.cursor = 0;
br.e.cursor = 0;
NPNR_ASSERT("TODO");
return br;
}