Skip to content

Commit

Permalink
Disable C4091 warning that breaks the build with Visual Studio
Browse files Browse the repository at this point in the history
2015 update 2 and Windows SDK 10.0.10586.0.

C:\Program Files (x86)\Windows Kits\10\include\10.0.10586.0\um\shlobj.h(1054): warning C4091: 'typedef ': ignored on left of 'tagGPFIDL_FLAGS' when no variable is declared
  • Loading branch information
sorinj committed Apr 21, 2016
1 parent 10129cd commit b8670ff
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions omaha/main.scons
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,7 @@ win_env.AppendUnique(
# in an inlined function.
'/wd4777', # format string 'requires an argument of type...
'/wd4820', # bytes padding added after construct 'member_name'
'/wd4091', # 'typedef': ignored on left of when no variable is declared
'/wd4987', # nonstandard extension used: 'throw (...)
'/wd4995', # name was marked as #pragma deprecated
'/wd4996', # 'function': was declared deprecated
Expand Down

0 comments on commit b8670ff

Please sign in to comment.