diff options
author | Sander Vesik <svesik@openoffice.org> | 2004-04-21 11:57:40 +0000 |
---|---|---|
committer | Sander Vesik <svesik@openoffice.org> | 2004-04-21 11:57:40 +0000 |
commit | 20b94fa41f164c0918ff5c55738641b54c2f2c37 (patch) | |
tree | 8ba75085d1359917e4d8edf5c07a467385654904 /cppu | |
parent | 23b49fed8fd7912b86ef4ffa562c2363d91131b4 (diff) |
INTEGRATION: CWS ooo20040329 (1.11.36); FILE MERGED
2004/03/15 09:22:19 sparcmoz 1.11.36.1: #i24059#: remove old GCC/SPARC workaround not needed since bridges code is fixed
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/source/uno/copy.hxx | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/cppu/source/uno/copy.hxx b/cppu/source/uno/copy.hxx index eaad3a2be..be790ce7e 100644 --- a/cppu/source/uno/copy.hxx +++ b/cppu/source/uno/copy.hxx @@ -2,9 +2,9 @@ * * $RCSfile: copy.hxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: obo $ $Date: 2003-09-04 10:53:05 $ + * last change: $Author: svesik $ $Date: 2004-04-21 12:57:40 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -804,12 +804,7 @@ inline void _copyConstructData( break; case typelib_TypeClass_HYPER: case typelib_TypeClass_UNSIGNED_HYPER: -#if defined(GCC) && defined(SPARC) - *(sal_Int32 *)pDest = *(sal_Int32 *)pSource; - *(((sal_Int32 *)pDest) +1) = *(((sal_Int32 *)pSource) +1); -#else *(sal_Int64 *)pDest = *(sal_Int64 *)pSource; -#endif break; case typelib_TypeClass_FLOAT: *(float *)pDest = *(float *)pSource; |