aboutsummaryrefslogtreecommitdiffstats
path: root/machxo2/archdefs.h
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-02-25 16:16:37 +0000
committerGitHub <noreply@github.com>2021-02-25 16:16:37 +0000
commitde107da5b3c66d329de0a0430a67ca843e27f3bd (patch)
treee18884eb5006aa991402b3576e188d7977ef88e8 /machxo2/archdefs.h
parentab8dfcfba4544c6733d074b24b0529d431b66d29 (diff)
parent23413a4d12ad070c8a356c5a3186f81def705c54 (diff)
downloadnextpnr-de107da5b3c66d329de0a0430a67ca843e27f3bd.tar.gz
nextpnr-de107da5b3c66d329de0a0430a67ca843e27f3bd.tar.bz2
nextpnr-de107da5b3c66d329de0a0430a67ca843e27f3bd.zip
Merge pull request #598 from YosysHQ/gatecat/compiler-flags
Tighten up compiler flags
Diffstat (limited to 'machxo2/archdefs.h')
-rw-r--r--machxo2/archdefs.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/machxo2/archdefs.h b/machxo2/archdefs.h
index f822b907..433b1b6b 100644
--- a/machxo2/archdefs.h
+++ b/machxo2/archdefs.h
@@ -48,7 +48,6 @@ struct Location
Location() : x(-1), y(-1){};
Location(int16_t x, int16_t y) : x(x), y(y){};
Location(const LocationPOD &pod) : x(pod.x), y(pod.y){};
- Location(const Location &loc) : x(loc.x), y(loc.y){};
bool operator==(const Location &other) const { return x == other.x && y == other.y; }
bool operator!=(const Location &other) const { return x != other.x || y != other.y; }