Skip to content

Commit 1b17cb4

Browse files
authored
Merge pull request #129 from jad-hamza/no-view
No view
2 parents 01999bb + dba5c1f commit 1b17cb4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/scala/inox/ast/GenTreeOps.scala

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,7 @@ trait GenTreeOps { self =>
6464
val rec = fold(f) _
6565
val Deconstructor(es, _) = e
6666

67-
//Usages of views makes the computation lazy. (which is useful for
68-
//contains-like operations)
69-
f(e, es.view.map(rec))
67+
f(e, es.map(rec))
7068
}
7169

7270

0 commit comments

Comments
 (0)