NSAssert -> NSCAssert.
Summary: Not sure why this didn't catch during my testing, but, this causes a build error. #accept2ship Reviewed By: emilsjolander Differential Revision: D4143108 fbshipit-source-id: 01c35c5b91767c95485d615eb06e836b023e125a
This commit is contained in:
committed by
Facebook Github Bot
parent
ba2905dd1d
commit
b50090a04e
@@ -276,7 +276,7 @@ static CGFloat _roundPixelValue(CGFloat value)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void _updateFrameRecursive(UIView *view) {
|
static void _updateFrameRecursive(UIView *view) {
|
||||||
NSAssert([NSThread isMainThread], @"Framesetting should only be done on the main thread.");
|
NSCAssert([NSThread isMainThread], @"Framesetting should only be done on the main thread.");
|
||||||
CSSNodeRef node = [view cssNode];
|
CSSNodeRef node = [view cssNode];
|
||||||
|
|
||||||
const CGPoint topLeft = {
|
const CGPoint topLeft = {
|
||||||
|
Reference in New Issue
Block a user