From dbb6266b8b87746fc3241ad6802289da6fb10114 Mon Sep 17 00:00:00 2001 From: tsepez Date: Thu, 25 Aug 2016 06:54:04 -0700 Subject: Tidy up CFX_PathData Remove friendship with CFX_Path Pack members tighter on 64-bits. Review-Url: https://codereview.chromium.org/2275883004 --- core/fxge/ge/cfx_pathdata.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/fxge/ge') diff --git a/core/fxge/ge/cfx_pathdata.cpp b/core/fxge/ge/cfx_pathdata.cpp index a538cadcaf..969bfc48e8 100644 --- a/core/fxge/ge/cfx_pathdata.cpp +++ b/core/fxge/ge/cfx_pathdata.cpp @@ -10,7 +10,7 @@ #include "third_party/base/numerics/safe_math.h" CFX_PathData::CFX_PathData() - : m_PointCount(0), m_pPoints(nullptr), m_AllocCount(0) {} + : m_PointCount(0), m_AllocCount(0), m_pPoints(nullptr) {} CFX_PathData::~CFX_PathData() { FX_Free(m_pPoints); -- cgit v1.2.3