From c3df673f12a8f2276133686ac21f1dcd090e15f6 Mon Sep 17 00:00:00 2001 From: Eric Lewis Date: Tue, 19 Feb 2019 21:51:33 -0800 Subject: [PATCH] Fabric: Fix dangling brace (#23540) Summary: This pull request fixes a dangling brace, causing Xcode to be unable to build RCTFabricSample. [General] [Fixed] - Fabric: Xcode build issue Pull Request resolved: https://github.com/facebook/react-native/pull/23540 Differential Revision: D14142990 Pulled By: hramos fbshipit-source-id: d6c2313d831e2ea5d22c77543814b86bfe8a1d53 --- ReactCommon/fabric/sample/SampleComponentDescriptorFactor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactCommon/fabric/sample/SampleComponentDescriptorFactor.cpp b/ReactCommon/fabric/sample/SampleComponentDescriptorFactor.cpp index 9cd6ffa2d95..5721126a08c 100644 --- a/ReactCommon/fabric/sample/SampleComponentDescriptorFactor.cpp +++ b/ReactCommon/fabric/sample/SampleComponentDescriptorFactor.cpp @@ -20,7 +20,7 @@ ComponentRegistryFactory getDefaultComponentRegistryFactory() { const SharedContextContainer &contextContainer) { auto registry = std::make_shared(); return registry; - } + }; } } // namespace react