From 1fd0b107570f41cc6f378794a22d8450f5619665 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Wed, 6 May 2015 16:09:05 -0700 Subject: Manual revert of ad2a822ce5c3 Reason for revert: No longer needed in face of 9ea57a43faea TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/1122423006 --- core/include/fxcrt/fx_string.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/include/fxcrt/fx_string.h b/core/include/fxcrt/fx_string.h index 18cd997ee8..8bb29dabd6 100644 --- a/core/include/fxcrt/fx_string.h +++ b/core/include/fxcrt/fx_string.h @@ -87,7 +87,7 @@ public: CFX_ByteStringC& operator = (const CFX_ByteString& src); bool operator== (const char* ptr) const { - return (FX_STRSIZE)FXSYS_strlen(ptr) == m_Length && + return FXSYS_strlen(ptr) == m_Length && FXSYS_memcmp32(ptr, m_Ptr, m_Length) == 0; } bool operator== (const CFX_ByteStringC& other) const { @@ -502,7 +502,7 @@ public: CFX_WideStringC& operator = (const CFX_WideString& src); bool operator== (const wchar_t* ptr) const { - return (FX_STRSIZE)FXSYS_wcslen(ptr) == m_Length && + return FXSYS_wcslen(ptr) == m_Length && wmemcmp(ptr, m_Ptr, m_Length) == 0; } bool operator== (const CFX_WideStringC& str) const { -- cgit v1.2.3