Compiler Error C2719 (Windows CE 5.0)

Send Feedback

'parameter': formal parameter with __declspec(align('#')) won't be aligned

The align __declspec modifier is not permitted with this alignment value on function parameters.

The following sample generates C2719:

// 
void func(int __declspec(align(32)) i);   // C2719
// try the following line instead
// void func(int i);

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.