From 304c31d29dddc91144381349a3beeb4ebc400088 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 18 Dec 2005 23:20:32 +0000 Subject: [PATCH] fix GetAsNotInBs()s causes confusing compiler errors in VC7.1 if Foreach.h isn't included first --- stepmania/src/RageUtil.h | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/RageUtil.h b/stepmania/src/RageUtil.h index 5df2f50d0d..5b940299b5 100644 --- a/stepmania/src/RageUtil.h +++ b/stepmania/src/RageUtil.h @@ -4,6 +4,7 @@ #define RAGE_UTIL_H #include +#include "Foreach.h" #define SAFE_DELETE(p) { delete (p); (p)=NULL; } #define SAFE_DELETE_ARRAY(p) { delete[] (p); (p)=NULL; }