Added ARC support

This commit is contained in:
Pierre-Olivier Latour
2014-01-08 22:27:15 -08:00
parent 2e587919ca
commit 78480e004a
8 changed files with 246 additions and 133 deletions

View File

@@ -81,7 +81,9 @@ int main(int argc, const char* argv[]) {
}
success = [webServer runWithPort:8080];
#if !__has_feature(objc_arc)
[webServer release];
#endif
}
return success ? 0 : -1;
}