Skip to content

Commit

Permalink
ビルド時の警告削減(WindowsSDKにある無名enumのtypedefがvs2017に怒られる対応)
Browse files Browse the repository at this point in the history
ImageHlp.Hでtypedef enumで無名列挙型を宣言し、代替名を指定していないコードが怒られている。
互換ライブラリのDbgHelp.Hに差し替えてみても同じところで怒られてしまうため、#pragmaで一時的に警告を無効にするように対処した。
  • Loading branch information
berryzplus committed Jun 5, 2018
1 parent 240dd1c commit e95b024
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion sakura_core/apiwrap/StdApi.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,19 @@
#ifndef SAKURA_STDAPI_85471C2C_6AEE_410D_BD09_A59056A5BA68_H_
#define SAKURA_STDAPI_85471C2C_6AEE_410D_BD09_A59056A5BA68_H_

#include <ImageHlp.h> //MakeSureDirectoryPathExists

//ランタイム情報ライブラリにアクセスするWindowsヘッダを参照する
//c++規格への準拠が厳しくなったため、WindowsSDKが無名enumをtypedefするコードが怒られる。
#if defined(_MSC_VER) && _MSC_VER >= 1900
//一時的に警告を無効にしてインクルードする
#pragma warning(push)
#pragma warning(disable:4091)
#include <ImageHlp.h> //MakeSureDirectoryPathExists
#pragma warning(pop)
#else
#include <ImageHlp.h> //MakeSureDirectoryPathExists
#endif


//デバッグ用。
//VistaだとExtTextOutの結果が即反映されない。この関数を用いると即反映されるので、
Expand Down

0 comments on commit e95b024

Please sign in to comment.