diff options
Diffstat (limited to 'gowin/arch.cc')
-rw-r--r-- | gowin/arch.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gowin/arch.cc b/gowin/arch.cc index 4d732680..0f080734 100644 --- a/gowin/arch.cc +++ b/gowin/arch.cc @@ -1909,9 +1909,9 @@ delay_t Arch::predictDelay(BelId src_bel, IdString src_pin, BelId dst_bel, IdStr bool Arch::getBudgetOverride(const NetInfo *net_info, const PortRef &sink, delay_t &budget) const { return false; } -ArcBounds Arch::getRouteBoundingBox(WireId src, WireId dst) const +BoundingBox Arch::getRouteBoundingBox(WireId src, WireId dst) const { - ArcBounds bb; + BoundingBox bb; int src_x = wires.at(src).x; int src_y = wires.at(src).y; |