Skip to content

Commit

Permalink
Fix flag bit
Browse files Browse the repository at this point in the history
Summary:
fixing error that occurred after i landed diffs that were not dependent

Created from CodeHub with https://fburl.com/edit-in-codehub

Reviewed By: fbcbl

Differential Revision: D65477739

fbshipit-source-id: ff57b7bd3ce8ed77563562603c745eb8c1f4370e
  • Loading branch information
Anna Powolny authored and facebook-github-bot committed Nov 5, 2024
1 parent 88cf5b8 commit 677e150
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litho-core/src/main/java/com/facebook/litho/NodeInfo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -1045,6 +1045,6 @@ class NodeInfo : Equivalence<NodeInfo> {

// When this flag is set, setLabeledBy was explicitly set on this
// node.
private const val PFLAG_LABELED_BY_IS_SET = 1L shl 36
private const val PFLAG_LABELED_BY_IS_SET = 1L shl 37
}
}

0 comments on commit 677e150

Please sign in to comment.