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.
unexpected token 'token'
Remarks
An unexpected separator token occurs in a pragma argument list. The remainder of the pragma was ignored.
Example
The following example generates C4079:
// C4079.cpp
// compile with: /W1
#pragma warning(disable : 4081)
#pragma pack(c,16) // C4079
int main() {
}