4.11.2011

stdint.h: build error C4005

stdint.h: ビルドエラー C4005

VC++ 2010 で <stdint.h> をインクルードすると警告が出る。
http://connect.microsoft.com/VisualStudio/feedback/details/621653/including-stdint-after-intsafe-generates-warnings

回避方法

   1: #ifdef _MSC_VER  // This check can be removed if you only build for Windows.
   2: #pragma warning (push)
   3: #pragma warning (disable : 4005)
   4: #include <intsafe.h>
   5: #include <stdint.h>
   6: #pragma warning (pop)
   7: #endif  // _MSC_VER

0 件のコメント:

コメントを投稿