diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-06-12 14:31:26 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-06-12 14:31:26 +0200 |
commit | 426fb75bb5c48d32d36bfbeaa89ec2c5eb8860c0 (patch) | |
tree | 24d1bc7ff70151c4a95cf947e2be337e4e3c0332 /dummy | |
parent | d62e341d5a3183d6fdb7168afb978068a396e9a4 (diff) | |
download | nextpnr-426fb75bb5c48d32d36bfbeaa89ec2c5eb8860c0.tar.gz nextpnr-426fb75bb5c48d32d36bfbeaa89ec2c5eb8860c0.tar.bz2 nextpnr-426fb75bb5c48d32d36bfbeaa89ec2c5eb8860c0.zip |
Fix NEXTPNR_NAMESPACE
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'dummy')
-rw-r--r-- | dummy/arch_place.cc | 4 | ||||
-rw-r--r-- | dummy/arch_place.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/dummy/arch_place.cc b/dummy/arch_place.cc index e41b8cc3..15f813ae 100644 --- a/dummy/arch_place.cc +++ b/dummy/arch_place.cc @@ -19,7 +19,11 @@ #include "arch_place.h" +NEXTPNR_NAMESPACE_BEGIN + bool isValidBelForCell(Design *design, CellInfo *cell, BelId bel) { return true; } + +NEXTPNR_NAMESPACE_END diff --git a/dummy/arch_place.h b/dummy/arch_place.h index 446396e9..66789b7d 100644 --- a/dummy/arch_place.h +++ b/dummy/arch_place.h @@ -22,6 +22,8 @@ #include "nextpnr.h" +NEXTPNR_NAMESPACE_BEGIN + // Architecure-specific placement functions // Whether or not a given cell can be placed at a given Bel @@ -29,4 +31,6 @@ // such as conflicting set/reset signals, etc bool isValidBelForCell(Design *design, CellInfo *cell, BelId bel); +NEXTPNR_NAMESPACE_END + #endif |