diff options
author | Sergiusz Bazanski <q3k@q3k.org> | 2018-07-23 21:49:02 +0100 |
---|---|---|
committer | Sergiusz Bazanski <q3k@q3k.org> | 2018-07-24 02:55:40 +0100 |
commit | 69233385f875d01a36e36924d3099175e7544b4e (patch) | |
tree | 53a13506c8f0b442504c00105dba64894a847af9 /common/nextpnr.h | |
parent | db31c0625bb722dd9c42fead97d3988659656648 (diff) | |
download | nextpnr-69233385f875d01a36e36924d3099175e7544b4e.tar.gz nextpnr-69233385f875d01a36e36924d3099175e7544b4e.tar.bz2 nextpnr-69233385f875d01a36e36924d3099175e7544b4e.zip |
ice40: Emit feed-through LUTs for PLL/LOCK
Diffstat (limited to 'common/nextpnr.h')
-rw-r--r-- | common/nextpnr.h | 3 |
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 |