aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2019-04-04 16:30:47 +0100
committerDavid Shah <dave@ds0.me>2019-04-04 16:34:06 +0100
commitf0cd51e6bc58f3dfd1185fd53ad970ba634359f2 (patch)
treedd153f0b4cdd8ce2e62e22dbe0df1c37636956ee /common
parent3f98084021b64420c36c171cc1245248d6968f03 (diff)
downloadnextpnr-f0cd51e6bc58f3dfd1185fd53ad970ba634359f2.tar.gz
nextpnr-f0cd51e6bc58f3dfd1185fd53ad970ba634359f2.tar.bz2
nextpnr-f0cd51e6bc58f3dfd1185fd53ad970ba634359f2.zip
generic: Cell timing support
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'common')
-rw-r--r--common/nextpnr.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h
index 79dbbaca..fc49300e 100644
--- a/common/nextpnr.h
+++ b/common/nextpnr.h
@@ -181,9 +181,9 @@ struct GraphicElement
float x1 = 0, y1 = 0, x2 = 0, y2 = 0, z = 0;
std::string text;
- GraphicElement() {};
- GraphicElement(type_t type, style_t style, float x1, float y1, float x2, float y2, float z) : type(type),
- style(style), x1(x1), y1(y1), x2(x2), y2(y2), z(z) {};
+ GraphicElement(){};
+ GraphicElement(type_t type, style_t style, float x1, float y1, float x2, float y2, float z)
+ : type(type), style(style), x1(x1), y1(y1), x2(x2), y2(y2), z(z){};
};
struct Loc