Skip to content

Commit de59629

Browse files
committed
Tweak to reduce code size
1 parent fe5fe96 commit de59629

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/picos/computation.bootstrap.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ and _ completions =
2626

2727
and ('a, _) st =
2828
| Canceled : {
29+
mutable tx : [ `Stopped | `Running ] tx;
2930
exn : exn;
3031
bt : Printexc.raw_backtrace;
31-
mutable tx : [ `Stopped | `Running ] tx;
3232
}
3333
-> ('a, [> `Canceled ]) st
3434
| Returned : {
35-
value : 'a;
3635
mutable tx : [ `Stopped | `Running ] tx;
36+
value : 'a;
3737
}
3838
-> ('a, [> `Returned ]) st
3939
| Continue : {

0 commit comments

Comments
 (0)