Skip to content

Commit 75f0bfe

Browse files
authored
Made plusAssign of UPathConstraints open (#328)
1 parent e28484f commit 75f0bfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

usvm-core/src/main/kotlin/org/usvm/constraints/PathConstraints.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ open class UPathConstraints<Type>(
9595
}
9696

9797
@Suppress("UNCHECKED_CAST")
98-
operator fun plusAssign(constraint: UBoolExpr): Unit =
98+
open operator fun plusAssign(constraint: UBoolExpr): Unit =
9999
with(constraint.uctx) {
100100
when {
101101
constraint == falseExpr -> contradiction(this)

0 commit comments

Comments
 (0)