diff --git a/ruamoko/include/AutoreleasePool.h b/ruamoko/include/AutoreleasePool.h index ae03c7ce6..173284d5d 100644 --- a/ruamoko/include/AutoreleasePool.h +++ b/ruamoko/include/AutoreleasePool.h @@ -22,7 +22,7 @@ */ @interface AutoreleasePool: Object { - Array array; ///< a list of objects awaiting release + Array array; ///< a list of objects awaiting release } /** diff --git a/ruamoko/lib/AutoreleasePool.r b/ruamoko/lib/AutoreleasePool.r index 8e12d1349..ad3b897ce 100644 --- a/ruamoko/lib/AutoreleasePool.r +++ b/ruamoko/lib/AutoreleasePool.r @@ -1,10 +1,10 @@ #include "AutoreleasePool.h" #include "Array+Private.h" -//@static AutoreleasePool sharedInstance; -@static Array poolStack; +#include "Array.h" +#include "Array+Private.h" -//@static Stack poolStack; +@static Array poolStack; @implementation AutoreleasePool