[Libreoffice-commits] core.git: bin/find-unneeded-includes
Gabor Kelemen (via logerrit)
logerrit at kemper.freedesktop.org
Thu May 9 09:10:26 UTC 2019
bin/find-unneeded-includes | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 2f60d8d3b67508c9fef59971ae725a12463a420d
Author: Gabor Kelemen <kelemen.gabor2 at nisz.hu>
AuthorDate: Tue May 7 00:23:57 2019 +0200
Commit: Michael Stahl <Michael.Stahl at cib.de>
CommitDate: Thu May 9 11:08:54 2019 +0200
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 at cib.de>
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:
More information about the Libreoffice-commits
mailing list