[Libreoffice-commits] core.git: sc/source
Kohei Yoshida
kohei.yoshida at collabora.com
Tue Oct 29 22:17:12 CET 2013
sc/source/core/opencl/opbase.hxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 050f342234e4e321d73d6c0630696ce71080ee26
Author: Kohei Yoshida <kohei.yoshida at collabora.com>
Date: Tue Oct 29 17:17:48 2013 -0400
std::unique_ptr is C++11 specific. Let's use boost::shared_ptr for now.
Change-Id: I549dd62bfb5c14993a3f600a388cd716b3ff7401
diff --git a/sc/source/core/opencl/opbase.hxx b/sc/source/core/opencl/opbase.hxx
index a982533..93f6820 100644
--- a/sc/source/core/opencl/opbase.hxx
+++ b/sc/source/core/opencl/opbase.hxx
@@ -106,7 +106,7 @@ protected:
class SlidingFunctionBase
{
public:
- typedef std::unique_ptr<DynamicKernelArgument> SubArgument;
+ typedef boost::shared_ptr<DynamicKernelArgument> SubArgument;
typedef std::vector<SubArgument> SubArguments;
virtual void GenSlidingWindowFunction(std::stringstream &,
const std::string, SubArguments &) = 0;
More information about the Libreoffice-commits
mailing list