mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04: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:
|
private:
|
||||||
union {
|
union {
|
||||||
int8_t _v[2];
|
value_type _v[2];
|
||||||
uint16_t _rep;
|
rep_type _rep;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -121,8 +121,8 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
union {
|
union {
|
||||||
int16_t _v[2];
|
value_type _v[2];
|
||||||
uint32_t _rep;
|
rep_type _rep;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user