summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--comphelper/source/misc/asyncnotification.cxx2
1 files changed, 1 insertions, 1 deletions
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 ) );
}