summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2013-10-29 20:31:51 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2013-10-29 20:33:24 -0400
commit9e7e21cd532f04a1b1c7c7288bc439848963b748 (patch)
treeaec867e203da8bc08b4ab96ee19743e8c8a51ef8
parent19bae2d3e36052cd902d6f127128c8aa91b937bb (diff)
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
-rw-r--r--sc/source/core/opencl/formulagroupcl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/opencl/formulagroupcl.cxx b/sc/source/core/opencl/formulagroupcl.cxx
index c83715e04626..a3b21a96f1f3 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)
{