Skip to content

Commit d1db705

Browse files
Merge pull request #185 from nberth/fix-pretty-printing-of-enumerations
Fix pretty-printing of enumerations
2 parents c0b10d1 + 39a6a04 commit d1db705

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cil.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4017,7 +4017,7 @@ class defaultCilPrinterClass : cilPrinter = object (self)
40174017
(fun (n, attrs, i, loc) ->
40184018
text n
40194019
++ self#pAttrs () attrs
4020-
++ text (n ^ " = ")
4020+
++ text " = "
40214021
++ self#pExp () i)
40224022
() enum.eitems)
40234023
++ unalign ++ line ++ text "} "

0 commit comments

Comments
 (0)