Skip to content

Commit

Permalink
Merge pull request #78 from ikbuibui/fix_reorder
Browse files Browse the repository at this point in the history
Fix reordering in Task properties inherit
  • Loading branch information
ikbuibui authored Jun 10, 2024
2 parents 9f77dd6 + c97ab66 commit 5f67757
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 5f67757

Please sign in to comment.