Skip to content

Commit f174c68

Browse files
committed
Swap cons cell order in run-time for Iniquity+.
1 parent 4ab5418 commit f174c68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iniquity-plus/values.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ typedef struct val_box_t {
2727
val_t val;
2828
} val_box_t;
2929
typedef struct val_cons_t {
30-
val_t snd;
3130
val_t fst;
31+
val_t snd;
3232
} val_cons_t;
3333
typedef struct val_vect_t {
3434
uint64_t len;

0 commit comments

Comments
 (0)