Skip to content

Commit

Permalink
Format c++
Browse files Browse the repository at this point in the history
  • Loading branch information
piaskowyk committed Nov 25, 2024
1 parent ef9393e commit 2f49e16
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ jsi::Value makeShareableClone(
auto object = value.asObject(rt);
if (!object.getProperty(rt, "__workletHash").isUndefined()) {
if (shouldRetainRemote.isBool() && shouldRetainRemote.getBool()) {
shareable = std::make_shared<RetainingShareable<ShareableWorklet>>(rt, object);
shareable =
std::make_shared<RetainingShareable<ShareableWorklet>>(rt, object);
} else {
shareable = std::make_shared<ShareableWorklet>(rt, object);
}
Expand Down

0 comments on commit 2f49e16

Please sign in to comment.