aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/nextpnr.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h
index 9ee00a50..021772fe 100644
--- a/common/nextpnr.h
+++ b/common/nextpnr.h
@@ -173,9 +173,6 @@ struct Loc
bool operator==(const Loc &other) const { return (x == other.x) && (y == other.y) && (z == other.z); }
bool operator!=(const Loc &other) const { return (x != other.x) || (y != other.y) || (z == other.z); }
-
- Loc(int x, int y, int z) : x(x), y(y), z(z) {}
- Loc() {}
};
NEXTPNR_NAMESPACE_END