diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-02-16 22:39:13 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-02-16 22:48:18 +0100 |
commit | b62048701cea5024383e19314592f2edcd9810fd (patch) | |
tree | 2d8d7f4dca515a774d2853302769af7394ad4b88 /vcl/source/gdi | |
parent | eecb368a6eb5242a69f83bf328830dc84c335b3f (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
Diffstat (limited to 'vcl/source/gdi')
-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 01707e6b878a..e64646fecea6 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(), |