diff options
author | Lei Zhang <thestig@chromium.org> | 2015-05-08 11:03:55 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-05-08 11:03:55 -0700 |
commit | f0a169e6fd5718995fa6ef8749c8d16cdad84985 (patch) | |
tree | 3194ef3427aee1c683efe6b54abdd65b2d6dff9d /core/include | |
parent | 21031ad28a73f0633e720997d310440c5bc31ec5 (diff) | |
download | pdfium-f0a169e6fd5718995fa6ef8749c8d16cdad84985.tar.xz |
Fix a bunch of -Wunused-but-set-variable warnings.
Also fix a few nits and other errors along the way.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1098583002
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 50d3344a89..9cc165f7a5 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_ |