diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-05-07 00:23:57 +0200 |
---|---|---|
committer | Michael Stahl <Michael.Stahl@cib.de> | 2019-05-09 11:08:54 +0200 |
commit | 2f60d8d3b67508c9fef59971ae725a12463a420d (patch) | |
tree | 9ab1ae28d0a435039e942b9027e7f6dd7e1c1e8e /bin | |
parent | 2070adb69823bfd596a241c77d1bb3ff106d00ae (diff) |
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')
-rwxr-xr-x | bin/find-unneeded-includes | 3 |
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: |