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 --- idlc/source/astoperation.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'idlc/source/astoperation.cxx') diff --git a/idlc/source/astoperation.cxx b/idlc/source/astoperation.cxx index 9263cd79c7d9..a33bf11c06ea 100644 --- a/idlc/source/astoperation.cxx +++ b/idlc/source/astoperation.cxx @@ -2,9 +2,9 @@ * * $RCSfile: astoperation.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: jsc $ $Date: 2001-03-15 12:30:43 $ + * last change: $Author: jsc $ $Date: 2001-04-11 07:24:23 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -101,7 +101,7 @@ void AstOperation::addExceptions(StringList* pExceptions) { idlc()->error()->error1(EIDL_ILLEGAL_RAISES, this); } - iter++; + ++iter; } } @@ -160,7 +160,7 @@ sal_Bool AstOperation::dumpBlob(RegistryTypeWriter& rBlob, sal_uInt16 index) OStringToOUString(pDecl->getLocalName(), RTL_TEXTENCODING_UTF8), paramMode); } - iter++; + ++iter; } } @@ -173,7 +173,7 @@ sal_Bool AstOperation::dumpBlob(RegistryTypeWriter& rBlob, sal_uInt16 index) { rBlob.setExcData(index, exceptIndex++, OStringToOUString((*iter)->getRelativName(), RTL_TEXTENCODING_UTF8) ); - iter++; + ++iter; } } -- cgit