From 16ee2a89a8cf11cd7126cd4e352a096115ba0e1e Mon Sep 17 00:00:00 2001 From: David Shah Date: Wed, 13 Jun 2018 17:32:34 +0200 Subject: [PATCH] frontend/json: Fix bus ports Signed-off-by: David Shah --- frontend/json/jsonparse.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/json/jsonparse.cc b/frontend/json/jsonparse.cc index 23367aca..92590902 100644 --- a/frontend/json/jsonparse.cc +++ b/frontend/json/jsonparse.cc @@ -422,7 +422,7 @@ void json_import_ports(Design *design, const string &modname, // Pick a name for this port if (is_bus) this_port.name = - port_info.name + '[' + std::to_string(index) + ']'; + port_info.name.str() + "[" + std::to_string(index) + "]"; else this_port.name = port_info.name; this_port.type = port_info.type;