aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/arch.cc
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-03-15 21:08:28 +0000
committerGitHub <noreply@github.com>2021-03-15 21:08:28 +0000
commitbf5f0fc58f2c055b6f45a6300ce3895aa79cd27c (patch)
tree25817e9ea10d339bf4c127b0a082cc5ac9a51deb /fpga_interchange/arch.cc
parenta8e35062c6a1a21838346dd7536bb2fcc7f820ed (diff)
parent351ca3b5eac472b4bd08b11a4aa6fb67e545eda3 (diff)
downloadnextpnr-bf5f0fc58f2c055b6f45a6300ce3895aa79cd27c.tar.gz
nextpnr-bf5f0fc58f2c055b6f45a6300ce3895aa79cd27c.tar.bz2
nextpnr-bf5f0fc58f2c055b6f45a6300ce3895aa79cd27c.zip
Merge pull request #625 from litghost/use_namespace_macro
Use NEXTPNR_NAMESPACE macro's now that headers are seperated.
Diffstat (limited to 'fpga_interchange/arch.cc')
-rw-r--r--fpga_interchange/arch.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpga_interchange/arch.cc b/fpga_interchange/arch.cc
index e9dee580..3839f579 100644
--- a/fpga_interchange/arch.cc
+++ b/fpga_interchange/arch.cc
@@ -1267,7 +1267,7 @@ void Arch::report_invalid_bel(BelId bel, CellInfo *cell) const
nameOfBel(bel), mapping);
}
-void Arch::read_lut_equation(nextpnr::DynamicBitarray<> *equation, const Property &equation_parameter) const
+void Arch::read_lut_equation(DynamicBitarray<> *equation, const Property &equation_parameter) const
{
equation->fill(false);
std::string eq_str = equation_parameter.as_string();