mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-05-24 17:31:53 -04:00
Utilize class types for member variables -- slightly more generic.
This commit is contained in:
parent
9505d367c3
commit
f74e6690cb
1 changed files with 4 additions and 4 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue