From 78eba6aef02e541ad75eba52cf78fb17e94c83b3 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 2 Jul 2005 23:38:36 +0000 Subject: [PATCH] move to the right place --- stepmania/src/crypto51/misc.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/stepmania/src/crypto51/misc.h b/stepmania/src/crypto51/misc.h index 34dcce9c85..f212ba13fa 100644 --- a/stepmania/src/crypto51/misc.h +++ b/stepmania/src/crypto51/misc.h @@ -140,10 +140,6 @@ inline unsigned int GetAlignment(T *dummy=NULL) // VC60 workaround #endif } -#if !defined(uintptr_t) -typedef unsigned int uintptr_t; -#endif - inline bool IsAlignedOn(const void *p, unsigned int alignment) { return IsPowerOf2(alignment) ? ModPowerOf2((uintptr_t)p, alignment) == 0 : (uintptr_t)p % alignment == 0;