diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-07-03 20:46:36 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-07-03 20:46:36 +0000 |
commit | 82dafa4f1dd607561f6852c50c15b03977389dc2 (patch) | |
tree | 841cb1f4d8e74879084089c481e53d834af86218 /core/fpdfapi/page/cpdf_stitchfunc.cpp | |
parent | a0aef45d9181aee30198fdb87557d61f62ad2a7c (diff) | |
download | pdfium-82dafa4f1dd607561f6852c50c15b03977389dc2.tar.xz |
Use std::vector<float> in CPDF_Function.
Change-Id: Ia994118f93f34b5c0c2f2f5ddfd70fe11e9ec549
Reviewed-on: https://pdfium-review.googlesource.com/37010
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fpdfapi/page/cpdf_stitchfunc.cpp')
-rw-r--r-- | core/fpdfapi/page/cpdf_stitchfunc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fpdfapi/page/cpdf_stitchfunc.cpp b/core/fpdfapi/page/cpdf_stitchfunc.cpp index 042e090062..b400a987c0 100644 --- a/core/fpdfapi/page/cpdf_stitchfunc.cpp +++ b/core/fpdfapi/page/cpdf_stitchfunc.cpp @@ -96,10 +96,10 @@ bool CPDF_StitchFunc::v_Init(const CPDF_Object* pObj, } m_bounds.reserve(nSubs + 1); - m_bounds.push_back(m_pDomains[0]); + m_bounds.push_back(m_Domains[0]); for (uint32_t i = 0; i < nSubs - 1; i++) m_bounds.push_back(pBoundsArray->GetFloatAt(i)); - m_bounds.push_back(m_pDomains[1]); + m_bounds.push_back(m_Domains[1]); m_encode.reserve(nSubs * 2); for (uint32_t i = 0; i < nSubs * 2; i++) |