diff mm7_data.h @ 1980:c1c74df0a33e

changing most of auto types to their actual types
author Grumpy7
date Wed, 30 Oct 2013 00:47:37 -0700
parents a50511e4f3c6
children f7e8c4d4a01b
line wrap: on
line diff
--- a/mm7_data.h	Mon Oct 28 22:16:42 2013 -0700
+++ b/mm7_data.h	Wed Oct 30 00:47:37 2013 -0700
@@ -1342,7 +1342,7 @@
 inline int round(float x) { return (int)floor(x + 0.5f); }
 inline void __fastcall memset32(void *ptr, unsigned __int32 value, int count)
 {
-  auto p = (unsigned __int32 *)ptr;
+  unsigned __int32* p = (unsigned __int32 *)ptr;
   for ( int i=0; i < count; i++ )
     *p++ = value;
 }