Skip to content

Commit

Permalink
Merge pull request #1765 from grumpycoders/coroutine-typo
Browse files Browse the repository at this point in the history
Fixing wrong type.
  • Loading branch information
nicolasnoble authored Oct 4, 2024
2 parents b5ae39e + a4b700c commit 2b76691
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mips/psyqo/coroutine.hh
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ struct Coroutine {
private:
Awaiter(Coroutine *coroutine) : m_coroutine(coroutine) {}
Coroutine *m_coroutine;
friend class Coroutine;
friend struct Coroutine;
};

/**
Expand Down

0 comments on commit 2b76691

Please sign in to comment.