Skip to content

Commit

Permalink
Remove forward declaration. (#1659)
Browse files Browse the repository at this point in the history
  • Loading branch information
Barenboim authored Nov 21, 2024
1 parent c92f95a commit 14ac26c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/kernel/SubTask.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@

#include <stddef.h>

class ParallelTask;

class SubTask
{
public:
Expand All @@ -39,7 +37,7 @@ class SubTask
void set_pointer(void *pointer) { this->pointer = pointer; }

private:
ParallelTask *parent;
class ParallelTask *parent;
void *pointer;

public:
Expand Down

0 comments on commit 14ac26c

Please sign in to comment.