Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
alignof(void)
is not allowed
An invalid value was passed to an operator.
Remarks
See alignof
operator for more information.
Example
The following sample generates C2714.
// C2714.cpp
int main() {
return alignof(void); // C2714
return alignof(char); // OK
}