diff options
author | Juergen Schmidt <jsc@openoffice.org> | 2001-04-11 06:29:27 +0000 |
---|---|---|
committer | Juergen Schmidt <jsc@openoffice.org> | 2001-04-11 06:29:27 +0000 |
commit | 3116185ab01a9ad2fed347f90a1f7c58aab3445d (patch) | |
tree | 67c89ecdb7bc3b7549977410aa33ae935736eeb2 /codemaker/source/idlmaker | |
parent | 093e18e9e0356f69d8a9dcaa5caf2624f2c610ec (diff) |
performance optimization, stl iterators
Diffstat (limited to 'codemaker/source/idlmaker')
-rw-r--r-- | codemaker/source/idlmaker/idltype.cxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/codemaker/source/idlmaker/idltype.cxx b/codemaker/source/idlmaker/idltype.cxx index e46c543adac4..b8475ab1b94b 100644 --- a/codemaker/source/idlmaker/idltype.cxx +++ b/codemaker/source/idlmaker/idltype.cxx @@ -2,9 +2,9 @@ * * $RCSfile: idltype.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: mm $ $Date: 2000-09-21 07:43:11 $ + * last change: $Author: jsc $ $Date: 2001-04-11 07:28:34 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -182,7 +182,7 @@ sal_Bool IdlType::dumpDependedTypes(IdlOptions* pOptions) exit(99); } } - iter++; + ++iter; } return ret; @@ -313,8 +313,7 @@ void IdlType::dumpDepIncludes(FileStream& o, const OString& typeName, sal_Char* } dumpNameSpace( o, sal_False, sal_False, relType ); } - - iter++; + ++iter; } } |