diff --git a/packages/react-native/ReactCommon/yoga/yoga/YGNode.h b/packages/react-native/ReactCommon/yoga/yoga/YGNode.h index f759a8773c7..098c1b5ea22 100644 --- a/packages/react-native/ReactCommon/yoga/yoga/YGNode.h +++ b/packages/react-native/ReactCommon/yoga/yoga/YGNode.h @@ -42,7 +42,6 @@ struct YOGA_EXPORT YGNode { private: void* context_ = nullptr; YGNodeFlags flags_ = {}; - uint8_t reserved_ = 0; union { YGMeasureFunc noContext; MeasureWithContextFn withContext; @@ -114,9 +113,6 @@ public: // Getters void* getContext() const { return context_; } - uint8_t& reserved() { return reserved_; } - uint8_t reserved() const { return reserved_; } - void print(void*); bool getHasNewLayout() const { return flags_.hasNewLayout; }