summaryrefslogtreecommitdiff
path: root/core/fxcrt/extension.h
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2016-06-08 20:44:54 -0700
committerCommit bot <commit-bot@chromium.org>2016-06-08 20:44:54 -0700
commit23ae4a55bfa8edca1069ac534bfd7c836fcc91ea (patch)
tree29c72f3e6d4dc68fa8e74cf4f46233404af4d455 /core/fxcrt/extension.h
parent947c87348d30ec8065a646e6da09e863e8f24cfa (diff)
downloadpdfium-23ae4a55bfa8edca1069ac534bfd7c836fcc91ea.tar.xz
Remove redundant casts, part 4
Review-Url: https://codereview.chromium.org/2053513002
Diffstat (limited to 'core/fxcrt/extension.h')
-rw-r--r--core/fxcrt/extension.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/extension.h b/core/fxcrt/extension.h
index 698bded9b6..877f1ca144 100644
--- a/core/fxcrt/extension.h
+++ b/core/fxcrt/extension.h
@@ -47,7 +47,7 @@ class CFX_CRTFileAccess : public IFX_FileAccess {
IFX_FileAccess* Retain() override {
m_RefCount++;
- return (IFX_FileAccess*)this;
+ return this;
}
void GetPath(CFX_WideString& wsPath) override { wsPath = m_path; }