नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'parameter': actual parameter with __declspec(align('#')) won't be aligned
Remarks
The align __declspec modifier is not permitted on function parameters.
Example
The following example generates C2718:
// C2718.cpp
typedef struct __declspec(align(32)) AlignedStruct {
int i;
} AlignedStruct;
void f2(int i, ...);
void f4() {
AlignedStruct as;
f2(0, as); // C2718, actual parameter is aligned
}