See: Placement new issue
Simple question, would this solve the align problem?
union
{
char real_array[sizeof(T)*size];
T fake_array[size];
};
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, that should solve the alignment problem. There’s no need to make
fake_arrayan array though. Just a single member of typeTis enough.This is actually a rather widely used trick for forcing specific alignment on some array.
As a pedantic side-note: anonymous unions only exist in C++, but not in C.