bin/find-unneeded-includes | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit 2f60d8d3b67508c9fef59971ae725a12463a420d Author: Gabor Kelemen <[email protected]> AuthorDate: Tue May 7 00:23:57 2019 +0200 Commit: Michael Stahl <[email protected]> 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 <[email protected]> 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: _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
