comphelper/source/misc/asyncnotification.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2220b3718fd831e78485cba2a272e9af08907ddd
Author:     varshneydevansh <varshney.devansh...@gmail.com>
AuthorDate: Thu Feb 8 21:06:25 2024 +0530
Commit:     Hossein <hoss...@libreoffice.org>
CommitDate: Mon Feb 12 13:28:36 2024 +0100

    tdf#158337 use std::erase instead of std::remove followed by erase
    
    Change-Id: I36043cd3aa234f98bd0b7cc2868e9094976472b9
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163123
    Reviewed-by: Hossein <hoss...@libreoffice.org>
    Tested-by: Hossein <hoss...@libreoffice.org>

diff --git a/comphelper/source/misc/asyncnotification.cxx 
b/comphelper/source/misc/asyncnotification.cxx
index cb8a2f251164..72c6414e7281 100644
--- a/comphelper/source/misc/asyncnotification.cxx
+++ b/comphelper/source/misc/asyncnotification.cxx
@@ -91,7 +91,7 @@ namespace comphelper
         std::scoped_lock aGuard( m_xImpl->aMutex );
 
         // remove all events for this processor
-        m_xImpl->aEvents.erase(std::remove_if( m_xImpl->aEvents.begin(), 
m_xImpl->aEvents.end(), EqualProcessor( _xProcessor ) ), 
m_xImpl->aEvents.end());
+        std::erase_if( m_xImpl->aEvents, EqualProcessor( _xProcessor ) );
     }
 
 

Reply via email to