From 2f60d8d3b67508c9fef59971ae725a12463a420d Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Tue, 7 May 2019 00:23:57 +0200 Subject: 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 --- bin/find-unneeded-includes | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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: -- cgit