Fix crash in optimised build with gcc-4.6

This commit is contained in:
Chris Cannam
2011-10-02 21:13:15 +01:00
parent eb91ce91bd
commit 9c52352c24

View File

@@ -84,8 +84,8 @@ inline void v_copy_channels(T *const R__ *const R__ dst,
} }
template<typename T> template<typename T>
inline void v_move(T *const R__ dst, inline void v_move(T *const dst,
const T *const R__ src, const T *const src,
const int count) const int count)
{ {
memmove(dst, src, count * sizeof(T)); memmove(dst, src, count * sizeof(T));