bin/find-unneeded-includes | 2 ++ io/IwyuFilter_io.yaml | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit ea45ce73b937d7b182cbcc3ccfd701cfb9e725ca Author: Gabor Kelemen <[email protected]> AuthorDate: Fri Sep 19 21:54:55 2025 +0200 Commit: Gabor Kelemen <[email protected]> CommitDate: Fri Sep 26 20:59:06 2025 +0200 bin/find-unneeded-includes: add exception for URE header osl/pipe.hxx, so that these can be removed from per-module yaml files Change-Id: I23eee4abf2f2767fcc9f1d22eb8e73c64089b154 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191343 Reviewed-by: Gabor Kelemen <[email protected]> Tested-by: Jenkins diff --git a/bin/find-unneeded-includes b/bin/find-unneeded-includes index 717048bfb16d..3821a4b51164 100755 --- a/bin/find-unneeded-includes +++ b/bin/find-unneeded-includes @@ -106,6 +106,8 @@ def ignoreRemoval(include, toAdd, absFileName, moduleRules, noexclude): "cppuhelper/interfacecontainer.hxx": "cppuhelper/interfacecontainer.h", "osl/file.hxx": "osl/file.h", "osl/module.hxx": "osl/module.h", + "osl/pipe.hxx": "osl/pipe.h", + "osl/pipe.hxx": "osl/pipe_decl.hxx", "osl/socket.hxx": "osl/socket.h", "osl/socket.hxx": "osl/socket_decl.hxx", "osl/thread.hxx": "osl/thread.h" diff --git a/io/IwyuFilter_io.yaml b/io/IwyuFilter_io.yaml index 673a1b3088e2..c852851ba63c 100644 --- a/io/IwyuFilter_io.yaml +++ b/io/IwyuFilter_io.yaml @@ -5,5 +5,3 @@ excludelist: # Base class needs full type - com/sun/star/connection/XConnection.hpp - com/sun/star/connection/XConnectionBroadcaster.hpp - # Don't replace with impl. detail - - osl/pipe.hxx
