Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Commit

Permalink
Disable nameless struct/union warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonwhite committed Sep 11, 2016
1 parent 5ea73fb commit 82f1e24
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/cvinfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ extern "C" {

// Disable "nonstandard extension used: zero-sized array in struct/union"
# pragma warning(disable : 4200)

// Disable "nonstandard extension used: nameless struct/union"
# pragma warning(disable : 4201)
#endif

#pragma pack(push, 1)
Expand Down

0 comments on commit 82f1e24

Please sign in to comment.