Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions ReactCommon/fabric/components/view/yoga/YogaStylableProps.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class YogaStylableProps;

typedef std::shared_ptr<const YogaStylableProps> SharedYogaStylableProps;

class YogaStylableProps {
class YogaStylableProps : public virtual DebugStringConvertible {
public:
YogaStylableProps() = default;
YogaStylableProps(const YGStyle &yogaStyle);
Expand All @@ -38,7 +38,8 @@ class YogaStylableProps {
#pragma mark - DebugStringConvertible (Partial)

public:
SharedDebugStringConvertibleList getDebugProps() const;
virtual ~YogaStylableProps() = default;
SharedDebugStringConvertibleList getDebugProps() const override;

#endif
};
Expand Down