electronicarts/EAStdC

small quality of live improvement

Opened this issue · 0 comments

the fixed-point class is not handled as POD type which will result in nasty constructions needed when you use it in a union. Can be fixed by using at line ~150:

FPTemplate() = default;
FPTemplate(const FPTemplate&    newValue) = default;

to mark it as POD where memcpy is allowed.