In VC, I have an DLL file with memory alignment set as 1, and an EXE file memory alignment set as default (it's 4). And I use classes of this DLL in EXE. Is there any potential risk with different memory alignment sets? Many thanks!
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
I assume by "memory alignment" you mean "structure packing" (/Zp). Yes, there can be problems if you have structures which require padding to achieve the specified alignment, since the two modules will pad differently. |
|||||||||
|