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

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