Skip to content

Commit 4ed7ecc

Browse files
committed
Attempt to fix CI failure
1 parent 350dd93 commit 4ed7ecc

File tree

2 files changed

+2
-0
lines changed
  • packages/react-native-reanimated/Common/cpp/reanimated/CSS

2 files changed

+2
-0
lines changed

packages/react-native-reanimated/Common/cpp/reanimated/CSS/common/values/CSSColor.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ enum class CSSColorType {
4141

4242
struct CSSColor : public CSSColorBase<CSSColorType, CSSColor> {
4343
using CSSColorBase<CSSColorType, CSSColor>::CSSColorBase;
44+
using CSSColorBase<CSSColorType, CSSColor>::operator==;
4445

4546
explicit CSSColor(jsi::Runtime &rt, const jsi::Value &jsiValue);
4647
explicit CSSColor(const folly::dynamic &value);

packages/react-native-reanimated/Common/cpp/reanimated/CSS/svg/values/SVGBrush.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ enum class SVGBrushType {
1414

1515
struct SVGBrush : public CSSColorBase<SVGBrushType, SVGBrush> {
1616
using CSSColorBase<SVGBrushType, SVGBrush>::CSSColorBase;
17+
using CSSColorBase<SVGBrushType, SVGBrush>::operator==;
1718

1819
explicit SVGBrush(jsi::Runtime &rt, const jsi::Value &jsiValue);
1920
explicit SVGBrush(const folly::dynamic &value);

0 commit comments

Comments
 (0)