Commit 5abb6d45 authored by fbarchard@google.com's avatar fbarchard@google.com

disable stucture padded warnings on win64 builds.

BUG=432
TESTED=local win64 build
R=tpsiaki@google.com

Review URL: https://webrtc-codereview.appspot.com/48289004

git-svn-id: http://libyuv.googlecode.com/svn/trunk@1389 16f28f9a-4ce2-e073-06de-1de4eb20be90
parent e23274ca
...@@ -18,6 +18,12 @@ ...@@ -18,6 +18,12 @@
// Must be included before jpeglib. // Must be included before jpeglib.
#include <setjmp.h> #include <setjmp.h>
#define HAVE_SETJMP #define HAVE_SETJMP
#if defined(_MSC_VER)
// disable warning 4324: structure was padded due to __declspec(align())
#pragma warning(disable:4324)
#endif
#endif #endif
struct FILE; // For jpeglib.h. struct FILE; // For jpeglib.h.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment