jspahrsummers / libextobjc

A Cocoa library to extend the Objective-C programming language.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing @ for autoreleasepool in EXTScope.h

dbrisinda opened this issue · comments

Line 113 of EXTScope.h is currently:

#define ext_keywordify autoreleasepool {}

it should be:

#define ext_keywordify @autoreleasepool {}

This is intentional, as part of allowing @weakify, @strongify, @onExit, etc. to be written with the @.

Ah, okay, thanks.