Skip to content

Commit

Permalink
Make pretty printing of integer division unambiguous
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoeilers committed Nov 12, 2024
1 parent 10b1b26 commit a35395b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/viper/silver/ast/Program.scala
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ sealed abstract class RelOp(val op: String) extends BoolDomainFunc {
case object AddOp extends SumOp("+") with IntBinOp with IntDomainFunc
case object SubOp extends SumOp("-") with IntBinOp with IntDomainFunc
case object MulOp extends ProdOp("*") with IntBinOp with IntDomainFunc
case object DivOp extends ProdOp("/") with IntBinOp with IntDomainFunc
case object DivOp extends ProdOp("\\") with IntBinOp with IntDomainFunc
case object ModOp extends ProdOp("%") with IntBinOp with IntDomainFunc

// Arithmetic permission operators
Expand Down

0 comments on commit a35395b

Please sign in to comment.