Kaydet (Commit) b6204870 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

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
üst eecb368a
...@@ -166,7 +166,7 @@ SvgData::SvgData(const SvgDataArray& rSvgDataArray, sal_uInt32 nSvgDataArrayLeng ...@@ -166,7 +166,7 @@ SvgData::SvgData(const SvgDataArray& rSvgDataArray, sal_uInt32 nSvgDataArrayLeng
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
SvgData::SvgData(const OUString& rPath): SvgData::SvgData(const OUString& rPath):
maSvgDataArray(NULL), maSvgDataArray(),
mnSvgDataArrayLength(0), mnSvgDataArrayLength(0),
maPath(rPath), maPath(rPath),
maRange(), maRange(),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment