diff options
author | lloyd <[email protected]> | 2011-02-09 14:53:00 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-02-09 14:53:00 +0000 |
commit | 5fa1a353fcdfc5fc83618f07a89b3d320596ae07 (patch) | |
tree | 80b5aa3841372bff2604f0471f5f4d77f094e568 /src | |
parent | a04f18f66c1e78b27dcb7c9c0e9b1897e41b88d1 (diff) |
Another cast
Diffstat (limited to 'src')
-rw-r--r-- | src/utils/simd_32/simd_sse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/simd_32/simd_sse.h b/src/utils/simd_32/simd_sse.h index 7b8fa1c67..1cb52105c 100644 --- a/src/utils/simd_32/simd_sse.h +++ b/src/utils/simd_32/simd_sse.h @@ -118,7 +118,7 @@ class SIMD_SSE2 SIMD_SSE2 operator>>(size_t shift) const { - return _mm_srli_epi32(reg, shift); + return _mm_srli_epi32(reg, static_cast<int>(shift)); } SIMD_SSE2 operator~() const |