[Libreoffice-commits] core.git: Branch 'feature/calc-group-interpreter-4' - sc/source
Kohei Yoshida
kohei.yoshida at collabora.com
Wed Oct 30 01:31:25 CET 2013
sc/source/core/opencl/formulagroupcl.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit c88576e424d7e6827edf2d9894b16fe22675b333
Author: Kohei Yoshida <kohei.yoshida at collabora.com>
Date: Tue Oct 29 20:31:51 2013 -0400
Believe or not, '>>' in this context is also C++11 specific.
For those compilers that don't support C++11, we need to put a space
in between.
Change-Id: I2b67225047de3cc97f8bcec8d75d360cbbefd988
diff --git a/sc/source/core/opencl/formulagroupcl.cxx b/sc/source/core/opencl/formulagroupcl.cxx
index c83715e..a3b21a9 100644
--- a/sc/source/core/opencl/formulagroupcl.cxx
+++ b/sc/source/core/opencl/formulagroupcl.cxx
@@ -1351,7 +1351,7 @@ bool FormulaGroupInterpreterOpenCL::interpret( ScDocument& rDoc,
// Constructing "AST"
FormulaTokenIterator aCode = rCode;
std::list<FormulaToken *> list;
- std::map<FormulaToken *, boost::shared_ptr<FormulaTreeNode>> m_hash_map;
+ std::map<FormulaToken *, boost::shared_ptr<FormulaTreeNode> > m_hash_map;
FormulaToken* pCur;
while( (pCur = (FormulaToken*)(aCode.Next()) ) != NULL)
{
More information about the Libreoffice-commits
mailing list