Skip to content

Commit 4a998ef

Browse files
authored
Merge pull request #223 from RachikAbidi/patch-1
Fix xcodebuild with swift 5.8
2 parents edca577 + 04b3460 commit 4a998ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/yoga/Yoga.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1899,7 +1899,7 @@ static float YGDistributeFreeSpaceSecondPass(
18991899
"flex",
19001900
config);
19011901
node->setLayoutHadOverflow(
1902-
node->getLayout().hadOverflow |
1902+
node->getLayout().hadOverflow ||
19031903
currentRelativeChild->getLayout().hadOverflow);
19041904
}
19051905
return deltaFreeSpace;

0 commit comments

Comments
 (0)