summaryrefslogtreecommitdiff
path: root/fxjs/ijs_runtime.cpp
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-04-25 22:12:34 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-04-25 22:12:34 +0000
commit9b8b217e6f8f2ff03b09d6075e689804928c7b3c (patch)
tree37f19ed798112f86674be18de6ba76b0d73fded1 /fxjs/ijs_runtime.cpp
parentecc1b271aba7d785426b4488dde754e5ce5e4313 (diff)
downloadpdfium-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 'fxjs/ijs_runtime.cpp')
-rw-r--r--fxjs/ijs_runtime.cpp2
1 files changed, 1 insertions, 1 deletions
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<v8::Isolate*>(isolate));
+ FXJS_Initialize(slot, static_cast<v8::Isolate*>(isolate));
#endif
}