Skip to content

Commit 37c3ce7

Browse files
make t_noc_traffic_flow noexcept
1 parent 2d1cf88 commit 37c3ce7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

vpr/src/noc/noc_traffic_flows.h

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,13 @@ struct t_noc_traffic_flow {
6868
int traffic_flow_priority;
6969

7070
/** Constructor initializes all variables*/
71-
t_noc_traffic_flow(std::string source_router_name, std::string sink_router_name, ClusterBlockId source_router_id, ClusterBlockId sink_router_id, double flow_bandwidth, double max_flow_latency, int flow_priority)
71+
t_noc_traffic_flow(std::string source_router_name,
72+
std::string sink_router_name,
73+
ClusterBlockId source_router_id,
74+
ClusterBlockId sink_router_id,
75+
double flow_bandwidth,
76+
double max_flow_latency,
77+
int flow_priority) noexcept
7278
: source_router_module_name(std::move(source_router_name))
7379
, sink_router_module_name(std::move(sink_router_name))
7480
, source_router_cluster_id(source_router_id)

0 commit comments

Comments
 (0)