diff options
author | Nico Weber <thakis@chromium.org> | 2015-10-30 15:16:17 -0700 |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2015-10-30 15:16:17 -0700 |
commit | 81edc51ef8242205c5a1192bc33bf16d8c96120b (patch) | |
tree | e169df20d19f67af40a2ebffe88f197f152f039c | |
parent | 3d59bd9d66d01eb39c30742bce67fa0376cb4ea8 (diff) | |
download | pdfium-81edc51ef8242205c5a1192bc33bf16d8c96120b.tar.xz |
Remove two more unused variables that compilers now complain about.
TBR=thestig@chromium.org
Review URL: https://codereview.chromium.org/1414073005 .
-rw-r--r-- | core/src/fxge/win32/fx_win32_gdipext.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/src/fxge/win32/fx_win32_gdipext.cpp b/core/src/fxge/win32/fx_win32_gdipext.cpp index 2022a5f957..42f8a4a29f 100644 --- a/core/src/fxge/win32/fx_win32_gdipext.cpp +++ b/core/src/fxge/win32/fx_win32_gdipext.cpp @@ -482,8 +482,6 @@ static CFX_DIBitmap* _StretchMonoToGray(int dest_width, LPBYTE dest_buf = pStretched->GetBuffer(); int src_width = pSource->GetWidth(); int src_height = pSource->GetHeight(); - int src_count = src_width * src_height; - int dest_count = dest_width * dest_height; int y_unit = src_height / dest_height; int x_unit = src_width / dest_width; int area_unit = y_unit * x_unit; |