From 8d5d1739f47bbba71b8c47bea14ecfd62aa15bef Mon Sep 17 00:00:00 2001 From: Oliver Drobnik Date: Fri, 21 Sep 2012 14:32:26 +0200 Subject: [PATCH] Fixed pre Xcode-4.4 compiler warning. Closes #223 --- Core/Source/DTHTMLParser.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Core/Source/DTHTMLParser.m b/Core/Source/DTHTMLParser.m index 86759d1fd..24ac9fed0 100644 --- a/Core/Source/DTHTMLParser.m +++ b/Core/Source/DTHTMLParser.m @@ -172,6 +172,7 @@ @implementation DTHTMLParser htmlSAXHandler _handler; NSData *_data; + NSStringEncoding _encoding; __unsafe_unretained id _delegate; htmlParserCtxtPtr _parserContext; @@ -403,5 +404,7 @@ - (NSString *)publicID @synthesize parserError = _parserError; +@synthesize encoding = _encoding; + @end