diff options
Diffstat (limited to 'sc/source/core/tool/parclass.cxx')
-rw-r--r-- | sc/source/core/tool/parclass.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/core/tool/parclass.cxx b/sc/source/core/tool/parclass.cxx index 9af15044f69a..9542d61c2515 100644 --- a/sc/source/core/tool/parclass.cxx +++ b/sc/source/core/tool/parclass.cxx @@ -38,6 +38,7 @@ #include "funcdesc.hxx" #include <unotools/charclass.hxx> #include <tools/debug.hxx> +#include <sal/macros.h> #include <string.h> #if OSL_DEBUG_LEVEL > 1 @@ -214,7 +215,7 @@ void ScParameterClassification::Init() memset( pData, 0, sizeof(RunData) * (SC_OPCODE_LAST_OPCODE_ID + 1)); // init from specified static data above - for ( size_t i=0; i < sizeof(pRawData) / sizeof(RawData); ++i ) + for ( size_t i=0; i < SAL_N_ELEMENTS(pRawData); ++i ) { const RawData* pRaw = &pRawData[i]; if ( pRaw->eOp > SC_OPCODE_LAST_OPCODE_ID ) |