dbaccess/source/core/api/RowSet.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b00183ebb29d19cb59145a3d240554f8e3573a0b
Author:     Zainab Abbasi <101zabb...@gmail.com>
AuthorDate: Thu Jun 20 22:02:07 2024 -0700
Commit:     Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org>
CommitDate: Fri Jun 21 16:42:11 2024 +0200

    tdf#158237 Use C++20 contains() instead of find() and end()
    
    Change-Id: I9ebe5e8c966a21b99a5229a4418738e4178716a3
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169312
    Tested-by: Jenkins
    Tested-by: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org>
    Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org>

diff --git a/dbaccess/source/core/api/RowSet.cxx 
b/dbaccess/source/core/api/RowSet.cxx
index 56bdcb3435be..609ebc36ce95 100644
--- a/dbaccess/source/core/api/RowSet.cxx
+++ b/dbaccess/source/core/api/RowSet.cxx
@@ -1833,11 +1833,11 @@ void 
ORowSet::execute_NoApprove_NoNewConn(ResettableMutexGuard& _rClearForNotifi
                         // retrieve the name of the column
                         OUString sName = xMetaData->getColumnName(i + 1);
                         // check for duplicate entries
-                        if(aColumnMap.find(sName) != aColumnMap.end())
+                        if(aColumnMap.contains(sName))
                         {
                             OUString sAlias(sName);
                             sal_Int32 searchIndex=1;
-                            while(aColumnMap.find(sAlias) != aColumnMap.end())
+                            while(aColumnMap.contains(sAlias))
                             {
                                 sAlias = sName + 
OUString::number(searchIndex++);
                             }

Reply via email to