sw/source/filter/ww8/writerhelper.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit a5fa7137291a9f223ac6cfd325403f6dee09303e Author: shark <[email protected]> AuthorDate: Sat Jan 17 17:48:41 2026 +0000 Commit: Ilmari Lauhakangas <[email protected]> CommitDate: Fri Feb 20 12:55:47 2026 +0100 tdf#170270 Use std::ranges::copy_if instead of std::copy_if in sw Change-Id: I3bf78f1dc0f3678631c2dc73d4a753198185c315 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197568 Reviewed-by: Ilmari Lauhakangas <[email protected]> Tested-by: Jenkins diff --git a/sw/source/filter/ww8/writerhelper.cxx b/sw/source/filter/ww8/writerhelper.cxx index e8500f6dfc9b..9f6e4b15f15c 100644 --- a/sw/source/filter/ww8/writerhelper.cxx +++ b/sw/source/filter/ww8/writerhelper.cxx @@ -508,7 +508,7 @@ namespace sw ww8::Frames GetFramesInNode(const ww8::Frames &rFrames, const SwNode &rNode) { ww8::Frames aRet; - std::copy_if(rFrames.begin(), rFrames.end(), + std::ranges::copy_if(rFrames, std::back_inserter(aRet), anchoredto(rNode)); return aRet; }
