Skip to content

Commit

Permalink
Fix reordering in Task properties inherit
Browse files Browse the repository at this point in the history
  • Loading branch information
ikbuibui committed Jun 10, 2024
1 parent 9f77dd6 commit c97ab66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redGrapes/task/property/inherit.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace redGrapes
: T_Head
, TaskPropertiesInherit<T_Tail...>
{
TaskPropertiesInherit(WorkerId worker_id) : TaskPropertiesInherit<T_Tail...>(worker_id), T_Head(worker_id)
TaskPropertiesInherit(WorkerId worker_id) :T_Head(worker_id), TaskPropertiesInherit<T_Tail...>(worker_id)
{
}

Expand Down

0 comments on commit c97ab66

Please sign in to comment.