diff options
author | Sergiusz Bazanski <q3k@q3k.org> | 2018-08-01 03:59:27 +0100 |
---|---|---|
committer | Sergiusz Bazanski <q3k@q3k.org> | 2018-08-01 03:59:27 +0100 |
commit | 85fc356fc1c50d0c2be4e44f6d430d4ce68cf644 (patch) | |
tree | 42612a353146d2c361d7d848cd55b44f03189637 /common/nextpnr.h | |
parent | 7d62c89fd534ead842ee0873677f9d0e476b0e28 (diff) | |
download | nextpnr-85fc356fc1c50d0c2be4e44f6d430d4ce68cf644.tar.gz nextpnr-85fc356fc1c50d0c2be4e44f6d430d4ce68cf644.tar.bz2 nextpnr-85fc356fc1c50d0c2be4e44f6d430d4ce68cf644.zip |
clangformat
Diffstat (limited to 'common/nextpnr.h')
-rw-r--r-- | common/nextpnr.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h index 908b8266..ce6413aa 100644 --- a/common/nextpnr.h +++ b/common/nextpnr.h @@ -205,10 +205,7 @@ struct DecalXY DecalId decal; float x = 0, y = 0; - bool operator==(const DecalXY &other) const - { - return (decal == other.decal && x == other.x && y == other.y); - } + bool operator==(const DecalXY &other) const { return (decal == other.decal && x == other.x && y == other.y); } }; struct BelPin |