diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-06-11 17:33:52 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-06-11 17:33:52 +0000 |
commit | b372dc6b20fca803aef86583551982fb9178011f (patch) | |
tree | 0d5a6724ecaf21ff51d63d1c6c200ebd1b7bc4e8 /fxbarcode/common | |
parent | 52239566107bda5d0d44395e5f3b6629356c2e23 (diff) | |
download | pdfium-b372dc6b20fca803aef86583551982fb9178011f.tar.xz |
Remove explicit calls to x->operator[]
Because its a code smell of a sort.
Change-Id: Id1c1b124f539e31a929701fb9486da9d396d3563
Reviewed-on: https://pdfium-review.googlesource.com/34695
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fxbarcode/common')
-rw-r--r-- | fxbarcode/common/BC_CommonByteArray.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fxbarcode/common/BC_CommonByteArray.cpp b/fxbarcode/common/BC_CommonByteArray.cpp index d66568c596..bb4fbf8af5 100644 --- a/fxbarcode/common/BC_CommonByteArray.cpp +++ b/fxbarcode/common/BC_CommonByteArray.cpp @@ -95,8 +95,7 @@ void CBC_CommonByteArray::Set(std::vector<uint8_t>* source, m_bytes = FX_Alloc(uint8_t, count); m_size = count; int32_t i; - for (i = 0; i < count; i++) { - m_bytes[i] = source->operator[](i + offset); - } + for (i = 0; i < count; i++) + m_bytes[i] = (*source)[i + offset]; m_index = m_size; } |