mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Fabric: Fix various includes (#27947)
Summary: This pull request fixes a few `#include`s in the Fabric source: * Changes `<Glog/logging.h>` to `<glog/logging.h>` in two files, which was an issue for case-sensitive file systems * In `ParagraphProps.cpp`, changes the include of `attributedstring/primitives.h` from a relative style to a more absolute style. ## Changelog [Internal] [Fixed] - Fabric: Fix various includes Pull Request resolved: https://github.com/facebook/react-native/pull/27947 Test Plan: Fabric compiles perfectly, and the Fabric test suite passes. Reviewed By: shergin Differential Revision: D19788148 Pulled By: sammy-SC fbshipit-source-id: 30a297e8aea50c7c7fd5f48745edf04811a6bdbd
This commit is contained in:
committed by
Facebook Github Bot
parent
291a2ffea2
commit
ca81037a0a
@@ -22,7 +22,7 @@
|
||||
#include <react/graphics/conversions.h>
|
||||
#include <cmath>
|
||||
|
||||
#include <Glog/logging.h>
|
||||
#include <glog/logging.h>
|
||||
|
||||
namespace facebook {
|
||||
namespace react {
|
||||
|
||||
@@ -6,13 +6,13 @@
|
||||
*/
|
||||
|
||||
#include "ParagraphProps.h"
|
||||
#include "../../../attributedstring/primitives.h"
|
||||
|
||||
#include <react/attributedstring/conversions.h>
|
||||
#include <react/attributedstring/primitives.h>
|
||||
#include <react/core/propsConversions.h>
|
||||
#include <react/debug/debugStringConvertibleUtils.h>
|
||||
|
||||
#include <Glog/logging.h>
|
||||
#include <glog/logging.h>
|
||||
|
||||
namespace facebook {
|
||||
namespace react {
|
||||
|
||||
Reference in New Issue
Block a user