Skip to content

Commit

Permalink
fixed copy.h error
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJStone committed Apr 19, 2017
1 parent f0aff96 commit c6351a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/utils/copy.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ static inline void Copy32(void *__restrict__ dst,
#else
Copy16(dst, src);
Copy16(reinterpret_cast<__m128i *>(dst) + 1,
reinterpret_cast<__m128i *>(src) + 1);
reinterpret_cast<const __m128i *>(src) + 1);
#endif
}

Expand Down

0 comments on commit c6351a4

Please sign in to comment.