summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2018-06-15 10:39:03 +0200
committerLuboš Luňák <l.lunak@collabora.com>2018-06-15 10:40:23 +0200
commitdfe78833d0919c3213727b20b5abea5718ba64b0 (patch)
treed19552b2b136c71b8289cca51ae693c54cdc02e7
parent43ddae454c45a7cb79b4f1a8ac31fc41900fe4fc (diff)
fix build error in debug code
Change-Id: I2c8102ebd50d8df055c6c30a493a718b8ac8b528
-rw-r--r--sc/source/core/tool/token.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index d60172b1cb0d..b1f34b5b6b36 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -507,7 +507,7 @@ void DumpToken(formula::FormulaToken const & rToken)
break;
default:
cout << "-- FormulaToken" << endl;
- cout << " opcode: " << rToken.GetOpCode() << " " <<
+ cout << " opcode: " << int(rToken.GetOpCode()) << " " <<
formula::FormulaCompiler::GetNativeSymbol( rToken.GetOpCode()).toUtf8().getStr() << endl;
cout << " type: " << static_cast<int>(rToken.GetType()) << endl;
switch (rToken.GetType())