diff options
author | Pascal Junck <pjunck@openoffice.org> | 2004-11-02 09:29:54 +0000 |
---|---|---|
committer | Pascal Junck <pjunck@openoffice.org> | 2004-11-02 09:29:54 +0000 |
commit | 0a3d968930a1704f38cea0f20a412e73743404a9 (patch) | |
tree | 88b053b401856080136fbaaf81f9a2d5932d8f72 /sal/qa | |
parent | 233c7d8b0999c0ff76f9425bcea0ca745e8d8a3a (diff) |
INTEGRATION: CWS qadev19 (1.8.90); FILE MERGED
2004/09/20 09:22:48 lla 1.8.90.1: #117552# problems with 64bit values solved
Diffstat (limited to 'sal/qa')
-rw-r--r-- | sal/qa/OStringBuffer/rtl_String_Const.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sal/qa/OStringBuffer/rtl_String_Const.h b/sal/qa/OStringBuffer/rtl_String_Const.h index 15fcd8e87dcb..0f67ccae91d9 100644 --- a/sal/qa/OStringBuffer/rtl_String_Const.h +++ b/sal/qa/OStringBuffer/rtl_String_Const.h @@ -2,9 +2,9 @@ * * $RCSfile: rtl_String_Const.h,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: kz $ $Date: 2003-12-11 12:29:48 $ + * last change: $Author: pjunck $ $Date: 2004-11-02 10:29:54 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1034,7 +1034,11 @@ static const sal_Int16 kSInt16Max = SHRT_MAX; static const sal_Int32 kUInt16Max = USHRT_MAX; static const sal_Int32 kSInt32Max = INT_MAX; static const sal_Int64 kUInt32Max = UINT_MAX; +#ifdef UNX +static const sal_Int64 kSInt64Max = 9223372036854775807LL; +#else static const sal_Int64 kSInt64Max = 9223372036854775807; +#endif //------------------------------------------------------------------------ |