Skip to content

Commit

Permalink
Remove move in copy constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
maurhofer-ubique committed Jan 15, 2024
1 parent d49f2ef commit b4442ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class SymbolObjectCollisionWrapper {
isColliding(object->animationCoordinator->isColliding()) {};

SymbolObjectCollisionWrapper(const SymbolObjectCollisionWrapper& other) noexcept
: symbolObject(std::move(other.symbolObject)),
: symbolObject(other.symbolObject),
symbolSortKey(other.symbolSortKey),
symbolTileIndex(other.symbolTileIndex),
isColliding(other.isColliding) {}
Expand Down

0 comments on commit b4442ea

Please sign in to comment.