diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-04-03 15:10:29 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-03 20:45:01 +0000 |
commit | 6da8ac5053e9ebf7c4ce0d9d67b0443d3f8f6084 (patch) | |
tree | 952cc0bec2108191bba09aba6f09b9cf8c22e10e /core/fpdfapi/font/ttgsubtable.cpp | |
parent | 1c5d0b48ec7a6443ba72fec2a58a65fc6d694aca (diff) | |
download | pdfium-6da8ac5053e9ebf7c4ce0d9d67b0443d3f8f6084.tar.xz |
Drop FXSYS_ from util methods
This Cl drops the FXSYS_ from utility methods which are the same on all
platforms.
Bug: pdfium:694
Change-Id: I0859b60c5ba7af68c929a519dd76f48c27a6c896
Reviewed-on: https://pdfium-review.googlesource.com/3614
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fpdfapi/font/ttgsubtable.cpp')
-rw-r--r-- | core/fpdfapi/font/ttgsubtable.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/fpdfapi/font/ttgsubtable.cpp b/core/fpdfapi/font/ttgsubtable.cpp index 4fae5d41d2..d2a6b9ab52 100644 --- a/core/fpdfapi/font/ttgsubtable.cpp +++ b/core/fpdfapi/font/ttgsubtable.cpp @@ -49,9 +49,9 @@ void CFX_GlyphMap::SetAt(int key, int value) { } bool CFX_GlyphMap::Lookup(int key, int& value) { - void* pResult = FXSYS_bsearch(&key, m_Buffer.GetBuffer(), - m_Buffer.GetSize() / sizeof(_IntPair), - sizeof(_IntPair), _CompareInt); + void* pResult = + bsearch(&key, m_Buffer.GetBuffer(), m_Buffer.GetSize() / sizeof(_IntPair), + sizeof(_IntPair), _CompareInt); if (!pResult) { return false; } |