[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - sc/source
I-Jui Sung (Ray)
ray at multicorewareinc.com
Mon Dec 9 20:05:24 PST 2013
sc/source/core/opencl/formulagroupcl.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 0f8c2106579a43da8f5c888ecdc9928d10f3086c
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 618fcc9..0804dcb 100644
--- a/sc/source/core/opencl/formulagroupcl.cxx
+++ b/sc/source/core/opencl/formulagroupcl.cxx
@@ -1624,9 +1624,9 @@ public:
}
}
private:
- cl_mem mpClmem2;
SubArgumentsType mvSubArguments;
boost::shared_ptr<SlidingFunctionBase> mpCodeGen;
+ cl_mem mpClmem2;
};
boost::shared_ptr<DynamicKernelArgument> SoPHelper(
@@ -1684,7 +1684,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