diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-09-20 20:41:20 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-09-21 09:29:07 +0200 |
commit | 6ed8e3258da439172e97a1404ef9e4d6453556a1 (patch) | |
tree | 460305dec1e0238f9e1505b759ff9b0671cda540 /bin | |
parent | ec3c4775a52bc2bb498f67c5937545fc40c65daa (diff) |
find-unneeded-includes: Don't propose functional -> bits/std_function.h
As seen for include/comphelper/doublecheckedinit.hxx - won't compile anyways
Change-Id: I3a0d5e115ecfc61ae90c6e843ecf4f0213b76e82
Reviewed-on: https://gerrit.libreoffice.org/60838
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/find-unneeded-includes | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/find-unneeded-includes b/bin/find-unneeded-includes index e912a9155c82..4196640e5d2b 100755 --- a/bin/find-unneeded-includes +++ b/bin/find-unneeded-includes @@ -57,6 +57,7 @@ def ignoreRemoval(include, toAdd, absFileName, moduleRules): bits = { "exception": "bits/exception.h", "memory": "bits/shared_ptr.h", + "functional": "bits/std_function.h", } for k, v in bits.items(): if include == k and v in toAdd: |