diff options
author | Michael Stahl <mst@apache.org> | 2011-08-28 22:23:03 +0000 |
---|---|---|
committer | Michael Stahl <mst@apache.org> | 2011-08-28 22:23:03 +0000 |
commit | 79fbe8110d9869c400775f6d81e413bacb6bdb9b (patch) | |
tree | 0354bfe03fe327c583b5c50d8df9c6c835a097ae /basegfx | |
parent | b63dec716d1ccb1eb9357ad35815be02a0e3bfe7 (diff) |
fix up code so it builds with GCC 4.6:
put user-defined default constructors in some classes.
remove "mutable" from reference variables.
include stddef.h where size_t or ptrdiff_t was not defined.
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/polygon/b2dpolygon.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/basegfx/source/polygon/b2dpolygon.cxx b/basegfx/source/polygon/b2dpolygon.cxx index d8255dc7ec10..97942f27db14 100644 --- a/basegfx/source/polygon/b2dpolygon.cxx +++ b/basegfx/source/polygon/b2dpolygon.cxx @@ -256,6 +256,8 @@ class ControlVectorPair2D basegfx::B2DVector maNextVector; public: + explicit ControlVectorPair2D () { } + const basegfx::B2DVector& getPrevVector() const { return maPrevVector; |