summaryrefslogtreecommitdiffstats
path: root/sc/qa/unit/helper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-22 09:43:40 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-22 09:44:01 +0200
commit046dc22ce15d363ee28d8ad1710c16e76e75a139 (patch)
treeb4bbf9bb50f683ffa2fb9796f4c5b78c877cd5cc /sc/qa/unit/helper
parentSfxClassificationHelper: avoid implicit cast in loop (diff)
downloadcore-046dc22ce15d363ee28d8ad1710c16e76e75a139.tar.gz
core-046dc22ce15d363ee28d8ad1710c16e76e75a139.zip
Avoid reserved identifiers
Change-Id: I782784f34975d708fdf179d098ce6654aad7a976
Diffstat (limited to 'sc/qa/unit/helper')
-rw-r--r--sc/qa/unit/helper/qahelper.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/qa/unit/helper/qahelper.hxx b/sc/qa/unit/helper/qahelper.hxx
index 083e2d107676..0d089cedf26f 100644
--- a/sc/qa/unit/helper/qahelper.hxx
+++ b/sc/qa/unit/helper/qahelper.hxx
@@ -138,8 +138,8 @@ SCQAHELPER_DLLPUBLIC ScTokenArray* compileFormula(
ScDocument* pDoc, const OUString& rFormula, const ScAddress* pPos = nullptr,
formula::FormulaGrammar::Grammar eGram = formula::FormulaGrammar::GRAM_NATIVE );
-template<size_t _Size>
-bool checkOutput(ScDocument* pDoc, const ScRange& aOutRange, const char* aOutputCheck[][_Size], const char* pCaption)
+template<size_t Size>
+bool checkOutput(ScDocument* pDoc, const ScRange& aOutRange, const char* aOutputCheck[][Size], const char* pCaption)
{
bool bResult = true;
const ScAddress& s = aOutRange.aStart;