diff options
Diffstat (limited to 'fpdfsdk/fxedit/fxet_list.h')
-rw-r--r-- | fpdfsdk/fxedit/fxet_list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/fxedit/fxet_list.h b/fpdfsdk/fxedit/fxet_list.h index d0fef1ca4b..50e43c9d2f 100644 --- a/fpdfsdk/fxedit/fxet_list.h +++ b/fpdfsdk/fxedit/fxet_list.h @@ -53,7 +53,7 @@ class CLST_Rect : public CFX_FloatRect { } bool operator==(const CLST_Rect& rect) const { - return FXSYS_memcmp(this, &rect, sizeof(CLST_Rect)) == 0; + return memcmp(this, &rect, sizeof(CLST_Rect)) == 0; } bool operator!=(const CLST_Rect& rect) const { return !(*this == rect); } |