Skip to content
Snippets Groups Projects
Commit 629392e1 authored by Pierre Loic Garoche's avatar Pierre Loic Garoche
Browse files

No more when suffix in clocked variables with kind2 option

parent 0697ff5b
No related branches found
No related tags found
No related merge requests found
......@@ -359,7 +359,10 @@ let rec print_ck_suffix fmt ck =
| Cvar
| Cunivar -> ()
| Con (ck,c,l) ->
fprintf fmt "%a when %s(%a)" print_ck_suffix ck l print_carrier c
if !Options.kind2_print then
print_ck_suffix fmt ck
else
fprintf fmt "%a when %s(%a)" print_ck_suffix ck l print_carrier c
| Clink ck' ->
print_ck_suffix fmt ck'
| Ccarrying (cr,ck') ->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment