Skip to content

Commit

Permalink
Merge pull request #818 from viperproject/meilers_fix_div_pretty
Browse files Browse the repository at this point in the history
Make pretty printing of integer division unambiguous
  • Loading branch information
marcoeilers authored Nov 13, 2024
2 parents 10b1b26 + a35395b commit 5611fcb
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 5611fcb

Please sign in to comment.