Skip to content
Prev Previous commit
Next Next commit
fix: variable naming convention
  • Loading branch information
RobbeBryssinck committed Jan 21, 2022
commit 47f3e7093bd31a09e2d84742767e369e9e34f57a
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