Utilize class types for member variables -- slightly more generic.

This commit is contained in:
Jared Boone 2015-12-28 16:51:34 -08:00
parent 9505d367c3
commit f74e6690cb

View File

@ -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;
};
};