diff options
author | Nico Weber <thakis@chromium.org> | 2014-07-29 08:55:54 -0700 |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2014-07-29 08:55:54 -0700 |
commit | c77e8f73397613f278eaeef2cae44debc6a684c8 (patch) | |
tree | 325d52616e193459f3cb248ce910852333d5d59d /core/src/fpdfapi/fpdf_font | |
parent | 3b07e751353a12d1b4605abfa96881c8eae1bbe5 (diff) | |
download | pdfium-c77e8f73397613f278eaeef2cae44debc6a684c8.tar.xz |
Remove a few unused variables, functions, and tables.
Found by clang's -Wunused-variable, -Wunused-function, -Wunused-const-variable.
BUG=none
R=bo_xu@foxitsoftware.com
Review URL: https://codereview.chromium.org/404653005
Diffstat (limited to 'core/src/fpdfapi/fpdf_font')
-rw-r--r-- | core/src/fpdfapi/fpdf_font/fpdf_font_cid.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/src/fpdfapi/fpdf_font/fpdf_font_cid.cpp b/core/src/fpdfapi/fpdf_font/fpdf_font_cid.cpp index bd1187645c..2cee90c24a 100644 --- a/core/src/fpdfapi/fpdf_font/fpdf_font_cid.cpp +++ b/core/src/fpdfapi/fpdf_font/fpdf_font_cid.cpp @@ -184,7 +184,6 @@ static FX_BOOL _CMap_GetCodeRange(_CMap_CodeRange& range, FX_BSTR first, FX_BSTR if (first.GetLength() == 0 || first.GetAt(0) != '<') { return FALSE; } - int num = 0; int i; for (i = 1; i < first.GetLength(); i ++) if (first.GetAt(i) == '>') { |