1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-30 21:48:24 +00:00

old boost support

This commit is contained in:
Miodrag Milanovic
2020-04-20 13:59:47 +02:00
parent de00c00aac
commit 93228f78d7

View File

@@ -724,7 +724,7 @@ void FPGAViewWidget::mousePressEvent(QMouseEvent *event)
return;
}
auto closest = closestOr.value();
auto closest = closestOr.get();
if (closest.type == ElementType::BEL) {
clickedBel(closest.bel, ctrl);
} else if (closest.type == ElementType::WIRE) {
@@ -770,7 +770,7 @@ void FPGAViewWidget::mouseMoveEvent(QMouseEvent *event)
return;
}
auto closest = closestOr.value();
auto closest = closestOr.get();
{
QMutexLocker locked(&rendererArgsLock_);