summaryrefslogtreecommitdiffstats
path: root/idl/source
diff options
context:
space:
mode:
authorShubham Verma <lifemeansmore008@gmail.com>2018-02-23 00:21:07 +0530
committerMichael Stahl <mstahl@redhat.com>2018-02-27 17:51:42 +0100
commit0b49701fa5c22abba6b9b4a60ddd2720973dd858 (patch)
treefe3feb78388d8e6bf05f3a3f6378d7361595b54b /idl/source
parentUpdated core (diff)
downloadcore-0b49701fa5c22abba6b9b4a60ddd2720973dd858.tar.gz
core-0b49701fa5c22abba6b9b4a60ddd2720973dd858.zip
tdf#114441 sal_uLong to better integer types
Change-Id: I55b45821cf67a99f97ba067a3d4923d76c19696e Reviewed-on: https://gerrit.libreoffice.org/50204 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'idl/source')
-rw-r--r--idl/source/cmptools/lex.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/idl/source/cmptools/lex.cxx b/idl/source/cmptools/lex.cxx
index 2f1e550cec58..599b06136008 100644
--- a/idl/source/cmptools/lex.cxx
+++ b/idl/source/cmptools/lex.cxx
@@ -148,9 +148,9 @@ char SvTokenStream::GetNextChar()
return nChar;
}
-sal_uLong SvTokenStream::GetNumber()
+sal_uInt64 SvTokenStream::GetNumber()
{
- sal_uLong l = 0;
+ sal_uInt64 l = 0;
short nLog = 10;
if( '0' == c )