aboutsummaryrefslogtreecommitdiffstats
path: root/common/nextpnr.h
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-07-25 19:45:38 +0200
committerDavid Shah <davey1576@gmail.com>2018-07-25 19:45:38 +0200
commit7a8e8999d21205044e707a2765dc444531d69cef (patch)
tree7085808be6ffebcd52da35af98577c736e523b5b /common/nextpnr.h
parent75744ff14cef6a8b1f44521bcb63b7b4a88037be (diff)
downloadnextpnr-7a8e8999d21205044e707a2765dc444531d69cef.tar.gz
nextpnr-7a8e8999d21205044e707a2765dc444531d69cef.tar.bz2
nextpnr-7a8e8999d21205044e707a2765dc444531d69cef.zip
clangformat
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'common/nextpnr.h')
-rw-r--r--common/nextpnr.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h
index f7f1cebc..1cce21c0 100644
--- a/common/nextpnr.h
+++ b/common/nextpnr.h
@@ -276,11 +276,11 @@ struct CellInfo : ArchCellInfo
// placement constraints
CellInfo *constr_parent;
- std::vector<CellInfo*> constr_children;
+ std::vector<CellInfo *> constr_children;
const int UNCONSTR = INT_MIN;
- int constr_x = UNCONSTR; // this.x - parent.x
- int constr_y = UNCONSTR; // this.y - parent.y
- int constr_z = UNCONSTR; // this.z - parent.z
+ int constr_x = UNCONSTR; // this.x - parent.x
+ int constr_y = UNCONSTR; // this.y - parent.y
+ int constr_z = UNCONSTR; // this.z - parent.z
bool constr_abs_z = false; // parent.z := 0
// parent.[xyz] := 0 when (constr_parent == nullptr)
};