Kaydet (Commit) 80ae8883 authored tarafından David Ostrovsky's avatar David Ostrovsky Kaydeden (comit) Michael Stahl

32/64 bit type mismatch

Change-Id: I4ca19e6efed8ba1ef724136c577a3dcac80f7d62
Reviewed-on: https://gerrit.libreoffice.org/13365Reviewed-by: 's avatarMichael Stahl <mstahl@redhat.com>
Tested-by: 's avatarMichael Stahl <mstahl@redhat.com>
üst 8aac6ecc
...@@ -47,10 +47,10 @@ inline void SwFltClearFlag(sal_uLong& rFieldFlags, int no) ...@@ -47,10 +47,10 @@ inline void SwFltClearFlag(sal_uLong& rFieldFlags, int no)
{ rFieldFlags &= ~(1L << no); } { rFieldFlags &= ~(1L << no); }
inline void SwFltSetFlag(sal_uLong& rFieldFlags, int no) inline void SwFltSetFlag(sal_uLong& rFieldFlags, int no)
{ rFieldFlags |= 1L << no; } { rFieldFlags |= sal_uLong(1) << no; }
inline bool SwFltGetFlag(sal_uLong nFieldFlags, int no) inline bool SwFltGetFlag(sal_uLong nFieldFlags, int no)
{ return (nFieldFlags & (1L << no)) != 0; } { return (nFieldFlags & (sal_uLong(1) << no)) != 0; }
//Subvert the Node/Content system to get positions which don't update as //Subvert the Node/Content system to get positions which don't update as
//content is appended to them //content is appended to them
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment