On Tuesday, 12 July 2016 at 00:20:31 UTC, Adam Sansier wrote:
I need to align every member of every struct in a module. I can't simply add align(n) inside every struct because that seems ridiculous.

Why are these structs needing the alignment?

From what I've read, align(n){ struct x; } only aligns the struct itself, is this true?

Right. To align the members, you put align(x) on the individual members (or align(x): at the top of the struct to apply to all of them)

Is there a way to set global alignment for members per module or per scope?

no

Reply via email to