Skip to content

Commit

Permalink
Merge remote-tracking branch 'github/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
bdrlamb-ms committed Sep 3, 2015
2 parents e8f7b91 + 8c89205 commit 7a320b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions Frameworks/Foundation/Utils.mm
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ NSRange NSUnionRange(NSRange range1, NSRange range2)

BOOL NSEqualRanges(NSRange range1, NSRange range2)
{
assert(0);
return false;
return ((range1.location == range2.location) && (range1.length == range2.length));
}

NSArray *NSSearchPathForDirectoriesInDomains (NSSearchPathDirectory dir, NSSearchPathDomainMask mask, BOOL tilde)
Expand Down
4 changes: 2 additions & 2 deletions include/UIKit/UITableViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
@class UIRefreshControl, UITableViewDataSource;

UIKIT_EXPORT_CLASS
@interface UITableViewController : UIViewController<UITableViewDelegate, UITableViewDataSource>
@interface UITableViewController : UIViewController<UITableViewDelegate, UITableViewDataSource, NSCoding>

- (id)initWithStyle:(UITableViewStyle)style;

Expand All @@ -46,4 +46,4 @@ UIKIT_EXPORT_CLASS

@end

#endif /* _UITABLEVIEWCONTROLLER_H_ */
#endif /* _UITABLEVIEWCONTROLLER_H_ */

0 comments on commit 7a320b0

Please sign in to comment.