From 9b8b217e6f8f2ff03b09d6075e689804928c7b3c Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Wed, 25 Apr 2018 22:12:34 +0000 Subject: Replace reinterpret_cast with static_cast where possible Change-Id: Ic62f1def8e043494c9fa6c08a937d7d872513567 Reviewed-on: https://pdfium-review.googlesource.com/31314 Commit-Queue: Tom Sepez Reviewed-by: dsinclair --- fxjs/cjs_runtime.cpp | 2 +- fxjs/ijs_runtime.cpp | 2 +- fxjs/xfa/cjx_object.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'fxjs') diff --git a/fxjs/cjs_runtime.cpp b/fxjs/cjs_runtime.cpp index 3a607f1aae..f6e7b2d18a 100644 --- a/fxjs/cjs_runtime.cpp +++ b/fxjs/cjs_runtime.cpp @@ -64,7 +64,7 @@ CJS_Runtime::CJS_Runtime(CPDFSDK_FormFillEnvironment* pFormFillEnv) unsigned int embedderDataSlot = 0; v8::Isolate* pExternalIsolate = nullptr; if (pPlatform->version == 2) { - pExternalIsolate = reinterpret_cast(pPlatform->m_isolate); + pExternalIsolate = static_cast(pPlatform->m_isolate); embedderDataSlot = pPlatform->m_v8EmbedderSlot; } FXJS_Initialize(embedderDataSlot, pExternalIsolate); diff --git a/fxjs/ijs_runtime.cpp b/fxjs/ijs_runtime.cpp index 79238bfe11..3f4bcd2497 100644 --- a/fxjs/ijs_runtime.cpp +++ b/fxjs/ijs_runtime.cpp @@ -16,7 +16,7 @@ // static void IJS_Runtime::Initialize(unsigned int slot, void* isolate) { #ifdef PDF_ENABLE_V8 - FXJS_Initialize(slot, reinterpret_cast(isolate)); + FXJS_Initialize(slot, static_cast(isolate)); #endif } diff --git a/fxjs/xfa/cjx_object.cpp b/fxjs/xfa/cjx_object.cpp index 2ea69d43c8..0ac2f44123 100644 --- a/fxjs/xfa/cjx_object.cpp +++ b/fxjs/xfa/cjx_object.cpp @@ -424,7 +424,7 @@ Optional CJX_Object::TryMeasure(XFA_Attribute eAttr, int32_t iBytes; if (GetMapModuleBuffer(pKey, pValue, iBytes, true) && iBytes == sizeof(CXFA_Measurement)) { - return {*reinterpret_cast(pValue)}; + return {*static_cast(pValue)}; } if (!bUseDefault) return {}; -- cgit v1.2.3