Skip to content

Commit 3cda37b

Browse files
committed
refactor: fix return type syntax leftover in CSSCalc operator+
1 parent 61455ea commit 3cda37b

File tree

1 file changed

+1
-1
lines changed
  • packages/react-native/ReactCommon/react/renderer/css

1 file changed

+1
-1
lines changed

packages/react-native/ReactCommon/react/renderer/css/CSSCalc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ struct CSSCalc {
3434

3535
constexpr bool operator==(const CSSCalc &rhs) const = default;
3636

37-
constexpr CSSCalc operator+(const CSSCalc &rhs) const ->
37+
constexpr CSSCalc operator+(const CSSCalc &rhs) const
3838
{
3939
return CSSCalc{
4040
px + rhs.px,

0 commit comments

Comments
 (0)