Skip to content

Commit

Permalink
fix: variable naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbeBryssinck committed Jan 21, 2022
1 parent f168015 commit 47f3e70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/client/Games/Primitives.h
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,9 @@ struct GamePtr
return *this;
}

GamePtr& operator=(GamePtr<T>&& acRhs)
GamePtr& operator=(GamePtr<T>&& aRhs)
{
std::swap(m_pPointer, acRhs.m_pPointer);
std::swap(m_pPointer, aRhs.m_pPointer);

return *this;
}
Expand Down

0 comments on commit 47f3e70

Please sign in to comment.