summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
Diffstat (limited to 'basic')
-rw-r--r--basic/source/comp/codegen.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/comp/codegen.cxx b/basic/source/comp/codegen.cxx
index 384344e2f9b1..64791af66671 100644
--- a/basic/source/comp/codegen.cxx
+++ b/basic/source/comp/codegen.cxx
@@ -22,6 +22,7 @@
#include "image.hxx"
#include "codegen.hxx"
#include "parser.hxx"
+#include <cstddef>
#include <limits>
#include <algorithm>
#include <osl/diagnose.h>
@@ -408,9 +409,8 @@ private:
const sal_uInt8* m_pCode;
static T readParam( sal_uInt8 const *& pCode )
{
- short nBytes = sizeof( T );
T nOp1=0;
- for ( int i=0; i<nBytes; ++i )
+ for ( std::size_t i=0; i<sizeof( T ); ++i )
nOp1 |= *pCode++ << ( i * 8);
return nOp1;
}