From 23ae4a55bfa8edca1069ac534bfd7c836fcc91ea Mon Sep 17 00:00:00 2001 From: tsepez Date: Wed, 8 Jun 2016 20:44:54 -0700 Subject: Remove redundant casts, part 4 Review-Url: https://codereview.chromium.org/2053513002 --- core/fxcrt/extension.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/fxcrt/extension.h') 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; } -- cgit v1.2.3