diff --git a/firmware/common/complex.hpp b/firmware/common/complex.hpp index 06d787bd8..645a9b439 100644 --- a/firmware/common/complex.hpp +++ b/firmware/common/complex.hpp @@ -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; }; };