From 88bf980b8e65f1f6257a1718b7a211fe5ebe9905 Mon Sep 17 00:00:00 2001 From: Ruslan Latypov Date: Tue, 19 Jul 2022 12:53:11 -0700 Subject: [PATCH] fix more imports Summary: There are many files across fbobjc relying on -include_pch and therefore they miss Foundation.h and UIKit.h includes. This diff was generated by a codemod and fixes these missing includes. More details on the missing imports https://fb.workplace.com/groups/929548250966094/permalink/981237982463787/ Changelog: [Internal] Reviewed By: yannickl Differential Revision: D37282740 fbshipit-source-id: 0f419025b3cf2f811e96ff464cb19e8e5a25aa09 --- iOS/FlipperKit/FlipperDiagnosticsViewController.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/iOS/FlipperKit/FlipperDiagnosticsViewController.m b/iOS/FlipperKit/FlipperDiagnosticsViewController.m index c394a2b72..eb44a813a 100644 --- a/iOS/FlipperKit/FlipperDiagnosticsViewController.m +++ b/iOS/FlipperKit/FlipperDiagnosticsViewController.m @@ -5,11 +5,13 @@ * LICENSE file in the root directory of this source tree. */ +#import + #ifdef FB_SONARKIT_ENABLED #if !TARGET_OS_OSX -#import "FlipperDiagnosticsViewController.h" #import "FlipperClient.h" +#import "FlipperDiagnosticsViewController.h" #define STATE_VIEW_HEIGHT 300