Skip to content

Commit

Permalink
Turn union into a struct
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastinas committed Aug 2, 2022
1 parent d0797a7 commit 3a589eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mzd_additional.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ PICNIC_BEGIN_C_DECL
typedef uint64_t word;
#define WORD_C(v) UINT64_C(v)

typedef ATTR_ALIGNED(32) union { word w64[4]; } block_t;
typedef ATTR_ALIGNED(32) struct { word w64[4]; } block_t;

/**
* Representation of matrices and vectors
Expand Down

0 comments on commit 3a589eb

Please sign in to comment.