diff options
author | tsepez <tsepez@chromium.org> | 2016-06-08 20:44:54 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-08 20:44:54 -0700 |
commit | 23ae4a55bfa8edca1069ac534bfd7c836fcc91ea (patch) | |
tree | 29c72f3e6d4dc68fa8e74cf4f46233404af4d455 /core | |
parent | 947c87348d30ec8065a646e6da09e863e8f24cfa (diff) | |
download | pdfium-23ae4a55bfa8edca1069ac534bfd7c836fcc91ea.tar.xz |
Remove redundant casts, part 4
Review-Url: https://codereview.chromium.org/2053513002
Diffstat (limited to 'core')
-rw-r--r-- | core/fxcrt/extension.h | 2 |
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; } |