mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-01-11 23:39:29 -05:00
Utilize class types for member variables -- slightly more generic.
This commit is contained in:
parent
9505d367c3
commit
f74e6690cb
@ -66,8 +66,8 @@ public:
|
||||
|
||||
private:
|
||||
union {
|
||||
int8_t _v[2];
|
||||
uint16_t _rep;
|
||||
value_type _v[2];
|
||||
rep_type _rep;
|
||||
};
|
||||
};
|
||||
|
||||
@ -121,8 +121,8 @@ public:
|
||||
|
||||
private:
|
||||
union {
|
||||
int16_t _v[2];
|
||||
uint32_t _rep;
|
||||
value_type _v[2];
|
||||
rep_type _rep;
|
||||
};
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user