From 2f1d4f03b5e55facec54b379256f5d0123c8a6ae Mon Sep 17 00:00:00 2001 From: Chris Yang Date: Tue, 25 Jun 2019 18:26:31 -0700 Subject: [PATCH] fix build breakage on PlatformViews.mm (#9495) --- .../darwin/ios/framework/Source/FlutterPlatformViews.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/platform/darwin/ios/framework/Source/FlutterPlatformViews.mm b/shell/platform/darwin/ios/framework/Source/FlutterPlatformViews.mm index b69b1e870d9..25f7ad943cf 100644 --- a/shell/platform/darwin/ios/framework/Source/FlutterPlatformViews.mm +++ b/shell/platform/darwin/ios/framework/Source/FlutterPlatformViews.mm @@ -230,7 +230,7 @@ UIView* FlutterPlatformViewsController::ReconstructClipViewsChain(int number_of_ void FlutterPlatformViewsController::ApplyMutators(const MutatorsStack& mutators_stack, UIView* embedded_view) { - FML_DCHECK(CATransform3DEqualToTransform(head.layer.transform, CATransform3DIdentity)); + FML_DCHECK(CATransform3DEqualToTransform(embedded_view.layer.transform, CATransform3DIdentity)); UIView* head = embedded_view; head.clipsToBounds = YES;