Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 571 Bytes

compiler-warning-level-1-c4079.md

File metadata and controls

25 lines (20 loc) · 571 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4079
Compiler Warning (level 1) C4079
11/04/2016
C4079
C4079
549759f0-e168-47e9-8c9a-de93ac843689

Compiler Warning (level 1) C4079

unexpected token 'token'

An unexpected separator token occurs in a pragma argument list. The remainder of the pragma was ignored.

The following sample generates C4079:

// C4079.cpp
// compile with: /W1
#pragma warning(disable : 4081)
#pragma pack(c,16)   // C4079

int main() {
}