From 3116185ab01a9ad2fed347f90a1f7c58aab3445d Mon Sep 17 00:00:00 2001 From: Juergen Schmidt Date: Wed, 11 Apr 2001 06:29:27 +0000 Subject: performance optimization, stl iterators --- codemaker/source/idlmaker/idltype.cxx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'codemaker/source/idlmaker') 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; } } -- cgit