changeset 33 | 3e2da88830cd |
parent 18 | 2f34d5167611 |
--- a/tests/auto/compiler/tst_compiler.cpp Tue Jul 06 15:10:48 2010 +0300 +++ b/tests/auto/compiler/tst_compiler.cpp Wed Aug 18 10:37:55 2010 +0300 @@ -640,7 +640,7 @@ #endif union { uchar c[8]; double d; } returnValue; - qMemCopy(returnValue.c, bytes, sizeof(returnValue.c)); + memcpy(returnValue.c, bytes, sizeof(returnValue.c)); return returnValue.d; }