Compiler Error C2718
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2718.
parameter': actual parameter with __declspec(align('#')) won't be aligned
The align __declspec modifier is not permitted on function parameters.
The following sample 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
}
Show: