diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-10-13 10:19:43 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-10-13 16:08:08 +0200 |
commit | 64ab96cd15e52da88781e720d6f031dbcd0ba902 (patch) | |
tree | 35afbecca67a6c30ef01bee1861035b60d4bbb27 /connectivity | |
parent | 5f12d6d42defc5ad3c286c23771be75595388d54 (diff) |
Prefer prefix ++/-- operators for non-primitive types
Change-Id: I057c3ea14cd1f224b339f884ae86890d16471215
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/mork/MorkParser.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/connectivity/source/drivers/mork/MorkParser.cxx b/connectivity/source/drivers/mork/MorkParser.cxx index b29486f6eabc..ba1e95b711e1 100644 --- a/connectivity/source/drivers/mork/MorkParser.cxx +++ b/connectivity/source/drivers/mork/MorkParser.cxx @@ -604,7 +604,7 @@ void MorkParser::retrieveLists(std::set<std::string>& lists) MorkTableMap* tables = getTables(defaultScope_); if (!tables) return; for (MorkTableMap::iterator TableIter = tables->begin(); - TableIter != tables->end(); TableIter++ ) + TableIter != tables->end(); ++TableIter ) { #ifdef VERBOSE std::cout << "\t Table:" @@ -614,7 +614,7 @@ void MorkParser::retrieveLists(std::set<std::string>& lists) MorkRowMap* rows = getRows( defaultListScope_, &TableIter->second ); if (!rows) return; for ( MorkRowMap::iterator RowIter = rows->begin(); - RowIter != rows->end(); RowIter++ ) + RowIter != rows->end(); ++RowIter ) { #ifdef VERBOSE std::cout << "\t\t\t Row Id:" @@ -624,7 +624,7 @@ void MorkParser::retrieveLists(std::set<std::string>& lists) #endif // Get cells for ( MorkCells::iterator cellsIter = RowIter->second.begin(); - cellsIter != RowIter->second.end(); cellsIter++ ) + cellsIter != RowIter->second.end(); ++cellsIter ) { if (cellsIter->first == 0xC1) { @@ -641,7 +641,7 @@ void MorkParser::getRecordKeysForListTable(std::string& listName, std::set<int>& MorkTableMap* tables = getTables(defaultScope_); if (!tables) return; for (MorkTableMap::iterator TableIter = tables->begin(); - TableIter != tables->end(); TableIter++ ) + TableIter != tables->end(); ++TableIter ) { #ifdef VERBOSE std::cout << "\t Table:" @@ -651,7 +651,7 @@ void MorkParser::getRecordKeysForListTable(std::string& listName, std::set<int>& MorkRowMap* rows = getRows( 0x81, &TableIter->second ); if (!rows) return; for ( MorkRowMap::iterator RowIter = rows->begin(); - RowIter != rows->end(); RowIter++ ) + RowIter != rows->end(); ++RowIter ) { #ifdef VERBOSE std::cout << "\t\t\t Row Id:" @@ -662,7 +662,7 @@ void MorkParser::getRecordKeysForListTable(std::string& listName, std::set<int>& // Get cells bool listFound = false; for ( MorkCells::iterator cellsIter = RowIter->second.begin(); - cellsIter != RowIter->second.end(); cellsIter++ ) + cellsIter != RowIter->second.end(); ++cellsIter ) { if (listFound) { |