“parameter”: 具有 __declspec(align('#')) 的形参将不被对齐
函数参数中不允许使用 align__declspec 修饰符。
下面的示例生成 C2719:
// C2719.cpp
void func(int __declspec(align(32)) i); // C2719
// try the following line instead
// void func(int i);
“parameter”: 具有 __declspec(align('#')) 的形参将不被对齐
函数参数中不允许使用 align__declspec 修饰符。
下面的示例生成 C2719:
// C2719.cpp
void func(int __declspec(align(32)) i); // C2719
// try the following line instead
// void func(int i);