From 0436bfce3e42e838350b3fa26878500677a9d02e Mon Sep 17 00:00:00 2001 From: empyrical Date: Sun, 11 Nov 2018 22:49:18 -0800 Subject: [PATCH] UITemplateProcessor: Fix case of include path (#22239) Summary: This pull request fixes a path name to be a proper case in `UITemplateProcessor`, which fixes this build warning: ``` {snip}/react/uimanager/UITemplateProcessor.cpp:17:10: warning: non-portable path to file ''; specified path differs in case from file name on disk [-Wnonportable-include-path] ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated. ``` Pull Request resolved: https://github.com/facebook/react-native/pull/22239 Differential Revision: D13020871 Pulled By: shergin fbshipit-source-id: 77555018cd569880518ff884ed8768effc4ea97e --- ReactCommon/fabric/uimanager/UITemplateProcessor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactCommon/fabric/uimanager/UITemplateProcessor.cpp b/ReactCommon/fabric/uimanager/UITemplateProcessor.cpp index fa252065d2cf33..2e6aad3c8dcc2e 100644 --- a/ReactCommon/fabric/uimanager/UITemplateProcessor.cpp +++ b/ReactCommon/fabric/uimanager/UITemplateProcessor.cpp @@ -14,7 +14,7 @@ #include #include #include -#include +#include #include #include