From 91695ecf98c32c6e99b4c6f803a896180ba96a53 Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Tue, 7 May 2019 00:19:52 +0200 Subject: find-unneeded-includes: dont propose to replace ctime with internal header As seen in sw/source/core/inc/layact.hxx Change-Id: Icc4281cd57b0cd8310a1044f6106691a5d1cd3c4 Reviewed-on: https://gerrit.libreoffice.org/71884 Tested-by: Jenkins Reviewed-by: Miklos Vajna --- bin/find-unneeded-includes | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/find-unneeded-includes b/bin/find-unneeded-includes index bc8e728078a8..834a4319cf71 100755 --- a/bin/find-unneeded-includes +++ b/bin/find-unneeded-includes @@ -62,7 +62,8 @@ def ignoreRemoval(include, toAdd, absFileName, moduleRules): "exception": "bits/exception.h", "memory": "bits/shared_ptr.h", "functional": "bits/std_function.h", - "cmath": "bits/std_abs.h" + "cmath": "bits/std_abs.h", + "ctime": "bits/types/clock_t.h" } for k, v in bits.items(): if include == k and v in toAdd: -- cgit