From a514c72071a4e572bb712f78b8b119ed0b2eb6b2 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Tue, 30 Apr 2013 11:27:46 -0400 Subject: Surpress warning on comparison between signed and unsigned. Change-Id: Ia155114817e3b28a201f734647b758cf7cebefce --- sc/source/core/tool/formulagroup.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sc') diff --git a/sc/source/core/tool/formulagroup.cxx b/sc/source/core/tool/formulagroup.cxx index c554e9cf3f1e..1ee57b54a611 100644 --- a/sc/source/core/tool/formulagroup.cxx +++ b/sc/source/core/tool/formulagroup.cxx @@ -39,7 +39,7 @@ bool FormulaGroupInterpreter::interpret() { const formula::SingleVectorRefToken* p2 = static_cast(p); const double* pArray = p2->GetArray(); - aCode2.AddDouble(i < p2->GetArrayLength() ? pArray[i] : 0.0); + aCode2.AddDouble(static_cast(i) < p2->GetArrayLength() ? pArray[i] : 0.0); } break; case formula::svDoubleVectorRef: -- cgit