summaryrefslogtreecommitdiff
path: root/idlc/source/astoperation.cxx
diff options
context:
space:
mode:
authorJuergen Schmidt <jsc@openoffice.org>2001-04-11 06:29:27 +0000
committerJuergen Schmidt <jsc@openoffice.org>2001-04-11 06:29:27 +0000
commit3116185ab01a9ad2fed347f90a1f7c58aab3445d (patch)
tree67c89ecdb7bc3b7549977410aa33ae935736eeb2 /idlc/source/astoperation.cxx
parent093e18e9e0356f69d8a9dcaa5caf2624f2c610ec (diff)
performance optimization, stl iterators
Diffstat (limited to 'idlc/source/astoperation.cxx')
-rw-r--r--idlc/source/astoperation.cxx10
1 files changed, 5 insertions, 5 deletions
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;
}
}