diff options
-rwxr-xr-x | bin/find-unneeded-includes | 2 | ||||
-rw-r--r-- | ucb/IwyuFilter_ucb.yaml | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/bin/find-unneeded-includes b/bin/find-unneeded-includes index 0e8cec276968..93257451cce9 100755 --- a/bin/find-unneeded-includes +++ b/bin/find-unneeded-includes @@ -86,6 +86,8 @@ def ignoreRemoval(include, toAdd, absFileName, moduleRules): return True if include == "boost/intrusive_ptr.hpp" and "boost/smart_ptr/intrusive_ptr.hpp" in toAdd: return True + if include == "boost/shared_ptr.hpp" and "boost/smart_ptr/shared_ptr.hpp" in toAdd: + return True if include == "boost/variant.hpp" and "boost/variant/variant.hpp" in toAdd: return True if include == "boost/unordered_map.hpp" and "boost/unordered/unordered_map.hpp" in toAdd: diff --git a/ucb/IwyuFilter_ucb.yaml b/ucb/IwyuFilter_ucb.yaml index 2c0ef5bb6552..cd9ff1c84725 100644 --- a/ucb/IwyuFilter_ucb.yaml +++ b/ucb/IwyuFilter_ucb.yaml @@ -1,10 +1,6 @@ --- assumeFilename: ucb/source/core/ucb.cxx excludelist: - ucb/source/ucp/cmis/std_outputstream.hxx: - - boost/shared_ptr.hpp - ucb/source/ucp/cmis/std_inputstream.hxx: - - boost/shared_ptr.hpp ucb/source/ucp/ftp/ftploaderthread.hxx: # Wrapper for external lib - curl.hxx |