Skip to content

Commit 5ad5062

Browse files
committed
Something strange happened when merging semgrep#3843. Test plan: CI synced from Pro 8b6e4c51480fa084e181ed42b27ab515d3dbafec
1 parent 71b02b9 commit 5ad5062

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/ograph/ograph_extended.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ class ['a, 'b] ograph_mutable =
7272
succ <- succ#replkey (a, Set_.remove (b, v) (succ#find a));
7373
pred <- pred#replkey (b, Set_.remove (a, v) (pred#find b))
7474

75-
method successors e = (succ#find e)#tosetb
76-
method predecessors e = (pred#find e)#tosetb
75+
method successors e = succ#find e
76+
method predecessors e = pred#find e
7777
method nodes = nods
7878
method nb_nodes = nods#length
7979
end

0 commit comments

Comments
 (0)