diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2014-01-01 12:05:13 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2014-01-01 12:07:20 +0000 |
commit | c6999ccfc69ca08d9a9250e983431c1cc71c71ad (patch) | |
tree | e057f70a9e664b4ddfc7b0e81fb86f9023b04667 /basegfx/source | |
parent | 2528e5d9058dc7b88a55fcc69226161bccec2691 (diff) |
WaE: basegfx / trapezoid fix.
Change-Id: I57133c169754aa213eced347bc2217fda1044156
Diffstat (limited to 'basegfx/source')
-rw-r--r-- | basegfx/source/polygon/b2dtrapezoid.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basegfx/source/polygon/b2dtrapezoid.cxx b/basegfx/source/polygon/b2dtrapezoid.cxx index 275f37537b13..dc3658798ef9 100644 --- a/basegfx/source/polygon/b2dtrapezoid.cxx +++ b/basegfx/source/polygon/b2dtrapezoid.cxx @@ -198,7 +198,7 @@ namespace basegfx /// Class to allow efficient allocation and release of B2DPoints class PointBlockAllocator { - static const int nBlockSize = 32; + static const size_t nBlockSize = 32; size_t nCurPoint; B2DPoint *mpPointBase; /// Special case the first allocation to avoid it. |