summaryrefslogtreecommitdiffstats
path: root/bin/find-unneeded-includes
diff options
context:
space:
mode:
authorGabor Kelemen <kelemen.gabor2@nisz.hu>2019-05-07 00:23:57 +0200
committerMichael Stahl <Michael.Stahl@cib.de>2019-05-09 11:08:54 +0200
commit2f60d8d3b67508c9fef59971ae725a12463a420d (patch)
tree9ab1ae28d0a435039e942b9027e7f6dd7e1c1e8e /bin/find-unneeded-includes
parentfind-unneeded-includes: filter out boost/unordered_map.hpp (diff)
downloadcore-2f60d8d3b67508c9fef59971ae725a12463a420d.tar.gz
core-2f60d8d3b67508c9fef59971ae725a12463a420d.zip
find-unneeded-includes: dont propose to replace cstdint with internal header
As seen in tools/source/misc/cpuid.cxx Change-Id: Ic596cca387efc1c310f65cbed141946be0742371 Reviewed-on: https://gerrit.libreoffice.org/71885 Tested-by: Jenkins Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'bin/find-unneeded-includes')
-rwxr-xr-xbin/find-unneeded-includes3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/find-unneeded-includes b/bin/find-unneeded-includes
index 18bcd5d6711d..aaa2b251434b 100755
--- a/bin/find-unneeded-includes
+++ b/bin/find-unneeded-includes
@@ -63,7 +63,8 @@ def ignoreRemoval(include, toAdd, absFileName, moduleRules):
"memory": "bits/shared_ptr.h",
"functional": "bits/std_function.h",
"cmath": "bits/std_abs.h",
- "ctime": "bits/types/clock_t.h"
+ "ctime": "bits/types/clock_t.h",
+ "cstdint": "bits/stdint-uintn.h"
}
for k, v in bits.items():
if include == k and v in toAdd: