We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02bf2bb commit f720db4Copy full SHA for f720db4
1 file changed
src/cil.ml
@@ -3425,9 +3425,12 @@ class defaultCilPrinterClass : cilPrinter = object (self)
3425
++ text " : "
3426
++ (self#pExpPrec level () e3)
3427
3428
- | CastE(_,t,e) ->
+ | CastE(k,t,e) ->
3429
text "("
3430
++ self#pType None () t (* TODO: option to not print implicit casts? *)
3431
+ (* ++ text "/*"
3432
+ ++ d_castkind () k (* convenient for debugging castkinds *)
3433
+ ++ text "*/" *)
3434
++ text ")"
3435
++ self#pExpPrec level () e
3436
0 commit comments