Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
lipsanen committed Nov 21, 2024
1 parent fbcf3e1 commit eedd35f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ struct VectorSlice
{
if (this != &other)
{
memcpy(this, &other, sizeof VectorSlice<T>);
memcpy(this, &other, sizeof(VectorSlice<T>));
other._clear();
}
return *this;
Expand Down

0 comments on commit eedd35f

Please sign in to comment.