aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/archdefs.h
diff options
context:
space:
mode:
Diffstat (limited to 'ecp5/archdefs.h')
-rw-r--r--ecp5/archdefs.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/ecp5/archdefs.h b/ecp5/archdefs.h
index 797db5f7..c4d25a50 100644
--- a/ecp5/archdefs.h
+++ b/ecp5/archdefs.h
@@ -119,8 +119,14 @@ struct DecalId
Location location;
uint32_t z = 0;
- bool operator==(const DecalId &other) const { return type == other.type && location == other.location && z == other.z; }
- bool operator!=(const DecalId &other) const { return type != other.type || location != other.location || z != other.z; }
+ bool operator==(const DecalId &other) const
+ {
+ return type == other.type && location == other.location && z == other.z;
+ }
+ bool operator!=(const DecalId &other) const
+ {
+ return type != other.type || location != other.location || z != other.z;
+ }
};
NEXTPNR_NAMESPACE_END