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 23, 2024
1 parent 4fd1838 commit feef347
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 feef347

Please sign in to comment.