[Libreoffice-commits] core.git: sc/source
I-Jui Sung (Ray)
ray at multicorewareinc.com
Mon Dec 9 20:04:57 PST 2013
sc/source/core/opencl/formulagroupcl.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 4cb23d2016042b0738b0be1ec5b4dfe4e2b80b5a
Author: I-Jui (Ray) Sung <ray at multicorewareinc.com>
Date: Mon Dec 9 22:03:20 2013 -0600
GPU Calc: fix compiler warnings regarding to member init order
Change-Id: Ie0223b0c4224323b4211cf207468ea0dc1205fbb
diff --git a/sc/source/core/opencl/formulagroupcl.cxx b/sc/source/core/opencl/formulagroupcl.cxx
index ee1b655..1c79f36 100644
--- a/sc/source/core/opencl/formulagroupcl.cxx
+++ b/sc/source/core/opencl/formulagroupcl.cxx
@@ -1625,9 +1625,9 @@ public:
}
}
private:
- cl_mem mpClmem2;
SubArgumentsType mvSubArguments;
boost::shared_ptr<SlidingFunctionBase> mpCodeGen;
+ cl_mem mpClmem2;
};
boost::shared_ptr<DynamicKernelArgument> SoPHelper(
@@ -1685,7 +1685,7 @@ DynamicKernelArgument *VectorRefFactory(const std::string &s,
DynamicKernelSoPArguments::DynamicKernelSoPArguments(
const std::string &s, const FormulaTreeNodeRef& ft, SlidingFunctionBase* pCodeGen) :
- DynamicKernelArgument(s, ft), mpCodeGen(pCodeGen),mpClmem2(NULL)
+ DynamicKernelArgument(s, ft), mpCodeGen(pCodeGen), mpClmem2(NULL)
{
size_t nChildren = ft->Children.size();
More information about the Libreoffice-commits
mailing list