Skip to content

Commit

Permalink
types-struct: fix mat4x2s struct members
Browse files Browse the repository at this point in the history
union mat4x2s { struct {  } } contains
members with incorrect naming.

Signed-off-by: Vincent Davis Jr <[email protected]>
  • Loading branch information
EasyIP2023 committed Jul 18, 2023
1 parent 4bb7e77 commit e9df003
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/cglm/types-struct.h
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,8 @@ typedef union mat4x2s {
struct {
float m00, m01;
float m10, m11;
float m21, m22;
float m31, m32;
float m20, m21;
float m30, m31;
};
#endif
} mat4x2s;
Expand Down

0 comments on commit e9df003

Please sign in to comment.