NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Warning (level 1) C4559

'parameter': formal parameter with __declspec(align('#')) may not be aligned

A parameter had a __declspec(align(#)) modifier. The compiler will ignore the modifier.

The following sample generates C4559:

void func(int __declspec(align(32)) i);   // C4559

void main() {
}