Fix line to mark "pool" as a unused var

This commit is contained in:
David Capello 2014-08-24 00:12:14 -03:00
parent 4921eeca9c
commit 573a78f8a2

View File

@ -42,9 +42,9 @@ extern "C" int allegro_main(int argc, char *argv[], NSObject* app_delegate);
#undef main
int main(int argc, char *argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
(void*)pool;
NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
(void)pool;
SheAppDelegate *app_delegate = [[SheAppDelegate alloc] init];
SheAppDelegate* app_delegate = [[SheAppDelegate alloc] init];
return allegro_main(argc, argv, app_delegate);
}