From 179237c4f5ff05bf82dab668b03a27fb3c767bec Mon Sep 17 00:00:00 2001 From: Deepanjan Biswas Date: Mon, 14 Nov 2022 10:07:55 -0500 Subject: [PATCH] Use a different name for the tuple size template argument --- include/oneapi/tbb/detail/_flow_graph_join_impl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/oneapi/tbb/detail/_flow_graph_join_impl.h b/include/oneapi/tbb/detail/_flow_graph_join_impl.h index 41ceac48428..aaed6254310 100644 --- a/include/oneapi/tbb/detail/_flow_graph_join_impl.h +++ b/include/oneapi/tbb/detail/_flow_graph_join_impl.h @@ -1214,10 +1214,10 @@ // using tuple_element. The class PT is the port type (reserving_port, queueing_port, key_matching_port) // and should match the typename. - template class PT, typename OutputTuple, typename JP> + template class PT, typename OutputTuple, typename JP> class unfolded_join_node : public join_base::type { public: - typedef typename wrap_tuple_elements::type input_ports_type; + typedef typename wrap_tuple_elements::type input_ports_type; typedef OutputTuple output_type; private: typedef join_node_base base_type;