aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/arch.cc
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2021-02-05 11:32:09 +0000
committerGitHub <noreply@github.com>2021-02-05 11:32:09 +0000
commitb0f9b7834e4cb035d1fd60f0fa1948c0fdfa233c (patch)
treed8b70c19580030a1ee28431b5d2287a0ae1690da /ice40/arch.cc
parent40d026e6fc5ab94c732682c62a6803bd3140953e (diff)
parent450bfae86cc807e4aec8d3b725169fd044212079 (diff)
downloadnextpnr-b0f9b7834e4cb035d1fd60f0fa1948c0fdfa233c.tar.gz
nextpnr-b0f9b7834e4cb035d1fd60f0fa1948c0fdfa233c.tar.bz2
nextpnr-b0f9b7834e4cb035d1fd60f0fa1948c0fdfa233c.zip
Merge pull request #570 from litghost/make_id_string_list_explicit
Mark IdString and IdStringList single argument constructors explicit.
Diffstat (limited to 'ice40/arch.cc')
-rw-r--r--ice40/arch.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ice40/arch.cc b/ice40/arch.cc
index 152d70a3..dd58361e 100644
--- a/ice40/arch.cc
+++ b/ice40/arch.cc
@@ -564,7 +564,7 @@ IdStringList Arch::getGroupName(GroupId group) const
suffix = "lc7_sw";
break;
default:
- return IdString();
+ return IdStringList();
}
std::array<IdString, 3> ids{x_ids.at(group.x), y_ids.at(group.y), id(suffix)};