From 6ed8e3258da439172e97a1404ef9e4d6453556a1 Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Thu, 20 Sep 2018 20:41:20 +0200 Subject: 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 --- bin/find-unneeded-includes | 1 + 1 file changed, 1 insertion(+) (limited to 'bin/find-unneeded-includes') 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: -- cgit