diff options
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 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: |