Skip to content

Commit

Permalink
appveyor動作検証: ビルド時の警告削減試行。
Browse files Browse the repository at this point in the history
ImageHlp.Hでtypedef enumで列挙型の名前を指定していない部分が警告を吐いている。
DbgHelp.Hに差し替えてみたが同じところで怒られてしまったため、pragmaで一時的に警告を殺す対応を入れてみた。
  • Loading branch information
berryzplus committed Jun 3, 2018
1 parent a45cac8 commit 3cea1c3
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 <DbgHelp.h> //MakeSureDirectoryPathExists

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


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

0 comments on commit 3cea1c3

Please sign in to comment.