You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your fix won't work when ARC is disabled. The problem here is not in inverted control. ARC_ENABLED is enabled in TBXML-Prefix.pch (for OS X build) and in TBXML-iOS-Prefix.pch there is no ARC_ENABLED management. So to fix the first issue you should add similar code there (you can simply copy it from TBXML-Prefix.pch).
I would like to report an error in the use of macros to support ARC.
file: TBXML+HTTP.m:
/****************************************************************/
ifndef ARC_ENABLED <<<<<<< error, invert control
else
endif
FIX:
ifdef ARC_ENABLED
else
endif
/****************************************************************/
ifndef ARC_ENABLED <<<<<<< error, invert control
else
endif
FIX:
ifdef ARC_ENABLED
else
endif
/****************************************************************/
file: TBXML.m:
/****************************************************************/
ifndef ARC_ENABLED <<<<<<< error, invert control
endif
FIX:
ifdef ARC_ENABLED
endif
/****************************************************************/
value = [NSString stringWithString:@""]; <<<<<<< fix warning
FIX:
value = @"";
/****************************************************************/
The text was updated successfully, but these errors were encountered: