diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-04-25 22:12:34 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-04-25 22:12:34 +0000 |
commit | 9b8b217e6f8f2ff03b09d6075e689804928c7b3c (patch) | |
tree | 37f19ed798112f86674be18de6ba76b0d73fded1 /core/fxcodec | |
parent | ecc1b271aba7d785426b4488dde754e5ce5e4313 (diff) | |
download | pdfium-9b8b217e6f8f2ff03b09d6075e689804928c7b3c.tar.xz |
Replace reinterpret_cast with static_cast where possible
Change-Id: Ic62f1def8e043494c9fa6c08a937d7d872513567
Reviewed-on: https://pdfium-review.googlesource.com/31314
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fxcodec')
-rw-r--r-- | core/fxcodec/bmp/cfx_bmpdecompressor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcodec/bmp/cfx_bmpdecompressor.cpp b/core/fxcodec/bmp/cfx_bmpdecompressor.cpp index 4494198b43..b490004853 100644 --- a/core/fxcodec/bmp/cfx_bmpdecompressor.cpp +++ b/core/fxcodec/bmp/cfx_bmpdecompressor.cpp @@ -66,7 +66,7 @@ void CFX_BmpDecompressor::Error() { void CFX_BmpDecompressor::ReadScanline(uint32_t row_num_, const std::vector<uint8_t>& row_buf) { - auto* p = reinterpret_cast<CFX_BmpContext*>(context_ptr_); + auto* p = static_cast<CFX_BmpContext*>(context_ptr_); p->m_pDelegate->BmpReadScanline(row_num_, row_buf); } |