diff options
author | Lei Zhang <thestig@chromium.org> | 2015-05-08 13:52:49 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-05-08 13:52:49 -0700 |
commit | ea7b333c73ea3e1847e79cabdd85853af67d6d6c (patch) | |
tree | 4f04b9ab62d02b4a3050d914008260611ea575c8 /core/include | |
parent | eff208f03dc7ea7606a3dc03150291f264147d60 (diff) | |
download | pdfium-ea7b333c73ea3e1847e79cabdd85853af67d6d6c.tar.xz |
Merge to XFA: Fix a bunch of -Wunused-but-set-variable warnings.
Also fix a few nits and other errors along the way.
Review URL: https://codereview.chromium.org/1098583002
Review URL: https://codereview.chromium.org/1135713004
(cherry picked from commit f0a169e6fd5718995fa6ef8749c8d16cdad84985)
(cherry picked from commit 470408c2ffe71e99cebad0d1d6887f1723f02cef)
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1133453006
Diffstat (limited to 'core/include')
-rw-r--r-- | core/include/fxcrt/fx_system.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/include/fxcrt/fx_system.h b/core/include/fxcrt/fx_system.h index e1e957a52d..37af19c769 100644 --- a/core/include/fxcrt/fx_system.h +++ b/core/include/fxcrt/fx_system.h @@ -95,6 +95,7 @@ typedef int FX_ERR; typedef char FX_CHAR; typedef char* FX_LPSTR; typedef char const* FX_LPCSTR; +#define FX_DWORD_MAX UINT_MAX typedef unsigned int FX_DWORD; typedef unsigned int* FX_LPDWORD; #if _FXM_PLATFORM_ == _FXM_PLATFORM_WINDOWS_ |