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/fxcrt | |
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/fxcrt')
-rw-r--r-- | core/src/fxcrt/fx_basic_bstring.cpp | 2 | ||||
-rw-r--r-- | core/src/fxcrt/fx_xml_parser.cpp | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/core/src/fxcrt/fx_basic_bstring.cpp b/core/src/fxcrt/fx_basic_bstring.cpp index f14ff2ba5d..60153fa45a 100644 --- a/core/src/fxcrt/fx_basic_bstring.cpp +++ b/core/src/fxcrt/fx_basic_bstring.cpp @@ -947,7 +947,7 @@ CFX_ByteString CFX_ByteString::LoadFromFile(FX_BSTR filename) FXSYS_fseek(file, 0, FXSYS_SEEK_SET); CFX_ByteString str; FX_LPSTR buf = str.GetBuffer(len); - size_t readCnt = FXSYS_fread(buf, 1, len, file); + FXSYS_fread(buf, 1, len, file); str.ReleaseBuffer(len); FXSYS_fclose(file); return str; diff --git a/core/src/fxcrt/fx_xml_parser.cpp b/core/src/fxcrt/fx_xml_parser.cpp index d41880a6c4..05fc7d5fbe 100644 --- a/core/src/fxcrt/fx_xml_parser.cpp +++ b/core/src/fxcrt/fx_xml_parser.cpp @@ -863,9 +863,6 @@ void CXML_AttrMap::RemoveAll() if (!m_pMap) { return; } - for (int i = 0; i < m_pMap->GetSize(); i ++) { - CXML_AttrItem& item = (*m_pMap)[i]; - } m_pMap->RemoveAll(); delete m_pMap; m_pMap = NULL; |