mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-10-09 16:40:57 +00:00
Utilize class types for member variables -- slightly more generic.
This commit is contained in:
@@ -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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user