Work around apparent alignment bug in G++ 5.4.1?

Padding struct to be sizeof() % 4 == 0, because it was crashing the baseband... I think.
This commit is contained in:
Jared Boone 2016-11-26 16:58:42 -08:00
parent ed0d5331ad
commit 606c1cebac

View File

@ -255,6 +255,7 @@ public:
private:
int16_t z[5] { };
int16_t _dummy { }; // TODO: Addresses GCC bug when constructing a class that's not sizeof() % 4 == 0?
};
} /* namespace decimate */