diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-02-16 22:39:13 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2013-11-05 10:39:40 +0100 |
commit | 59131d5ec7c138677d3ca24f8969a3be1701e0a5 (patch) | |
tree | 118949d45c1749519ab2e06f4241284c404ed867 /vcl | |
parent | b05805d6e2201a7c6c7824fb0b9e8ba780e04101 (diff) |
Work around problem with boost::shared_array(NULL) ctor and Boost 1.53.0
...claiming
template<class Y> boost::shared_array<T>::shared_array(Y*)
is not a viable option due to mismatched types 'Y*' and 'long int'
Change-Id: I8db321cd25cd73c84fa2a3124c9ec1018c131d5f
(cherry picked from commit b62048701cea5024383e19314592f2edcd9810fd)
Signed-off-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/svgdata.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/svgdata.cxx b/vcl/source/gdi/svgdata.cxx index f98abcdc1e55..4d15ec392f0b 100644 --- a/vcl/source/gdi/svgdata.cxx +++ b/vcl/source/gdi/svgdata.cxx @@ -166,7 +166,7 @@ SvgData::SvgData(const SvgDataArray& rSvgDataArray, sal_uInt32 nSvgDataArrayLeng ////////////////////////////////////////////////////////////////////////////// SvgData::SvgData(const OUString& rPath): - maSvgDataArray(NULL), + maSvgDataArray(), mnSvgDataArrayLength(0), maPath(rPath), maRange(), |