Skip to content

Commit

Permalink
Use a different name for the tuple size template argument
Browse files Browse the repository at this point in the history
  • Loading branch information
dbiswas2808 committed Nov 14, 2022
1 parent 3d0d30f commit 179237c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/oneapi/tbb/detail/_flow_graph_join_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -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<int N, template<class> class PT, typename OutputTuple, typename JP>
template<int M, template<class> class PT, typename OutputTuple, typename JP>
class unfolded_join_node : public join_base<N,PT,OutputTuple,JP>::type {
public:
typedef typename wrap_tuple_elements<N, PT, OutputTuple>::type input_ports_type;
typedef typename wrap_tuple_elements<M, PT, OutputTuple>::type input_ports_type;
typedef OutputTuple output_type;
private:
typedef join_node_base<JP, input_ports_type, output_type > base_type;
Expand Down

0 comments on commit 179237c

Please sign in to comment.