From 63f545c485c063831ecb58fb492f96fe5f462fd1 Mon Sep 17 00:00:00 2001 From: tsepez Date: Tue, 13 Sep 2016 16:08:49 -0700 Subject: CFX_FloatPoint default constructor and equals operators Review-Url: https://codereview.chromium.org/2341453002 --- fpdfsdk/pdfwindow/PWL_Utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fpdfsdk/pdfwindow/PWL_Utils.h') diff --git a/fpdfsdk/pdfwindow/PWL_Utils.h b/fpdfsdk/pdfwindow/PWL_Utils.h index c3acc59918..d7c65d2a8a 100644 --- a/fpdfsdk/pdfwindow/PWL_Utils.h +++ b/fpdfsdk/pdfwindow/PWL_Utils.h @@ -76,7 +76,7 @@ T PWL_MAX(const T& i, const T& j) { class CPWL_Point : public CFX_FloatPoint { public: - CPWL_Point() : CFX_FloatPoint(0.0f, 0.0f) {} + CPWL_Point() {} CPWL_Point(FX_FLOAT fx, FX_FLOAT fy) : CFX_FloatPoint(fx, fy) {} CPWL_Point(const CPWL_Point& point) : CFX_FloatPoint(point.x, point.y) {} }; -- cgit v1.2.3