Fix unreferenced parameter warning

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3448 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
avolkov
2009-12-19 03:10:22 +00:00
parent 1a8a26faf4
commit a3320a3544
+5 -1
View File
@@ -115,7 +115,11 @@ SCALE_(Prefetch) (const void* p)
#else /* Not HAVE_PREFETCH */
static inline void
SCALE_(Prefetch) (const void* p) { /* no-op */ }
SCALE_(Prefetch) (const void* p)
{
(void)p; // silence compiler
/* no-op */
}
#endif /* HAVE_PREFETCH */