diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2008-01-04 12:06:18 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2008-01-04 12:06:18 +0000 |
commit | 94ed6557411c5426e7082d658cd97ab320106b01 (patch) | |
tree | 385394bf9db4ca1c77d37430a68f7596fc27b674 /basic | |
parent | 83d6b11ccb76d1e0fe4651bf222876a4676bbfa1 (diff) |
INTEGRATION: CWS gcc430 (1.18.30); FILE MERGED
2007/12/13 10:21:16 cmc 1.18.30.1: #i84499# gcc 4.3.0 is better at not generated unneeded templates, and like all compilers handles each .cxx file seperately so cannot know that the template code to generate the needed methods from is in a different .cxx so we have to force that method to be generated
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/comp/codegen.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/basic/source/comp/codegen.cxx b/basic/source/comp/codegen.cxx index 5b907b1113de..2297c8e8fe4e 100644 --- a/basic/source/comp/codegen.cxx +++ b/basic/source/comp/codegen.cxx @@ -4,9 +4,9 @@ * * $RCSfile: codegen.cxx,v $ * - * $Revision: 1.18 $ + * $Revision: 1.19 $ * - * last change: $Author: vg $ $Date: 2007-08-30 09:59:33 $ + * last change: $Author: hr $ $Date: 2008-01-04 13:06:18 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -538,5 +538,7 @@ void NeverRunsEver() // this to force instatiation of the template. Otherwise using the template // in another code module results in link errors :-( PCodeBuffConvertor< UINT16, UINT32 > aInst1(0,0); + aInst1.convert(); PCodeBuffConvertor< UINT32, UINT16 > aInst2(0,0); + aInst2.convert(); } |