diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2019-01-07 08:41:22 +0100 |
---|---|---|
committer | Michael Stahl <Michael.Stahl@cib.de> | 2019-01-11 18:30:50 +0100 |
commit | 25f2fd3aa45dc47356b7074151e8e5b6ae750e92 (patch) | |
tree | b4c6c3a78b3994f5b82b815525b77d393ff3f9ea /bin/find-unneeded-includes | |
parent | b534c1ef4ba439cc1b0f566ed9e3a3275a2e8e5e (diff) |
find-unneeded-includes: don't propose cmath -> bits/std_abs.h
Found while cleaning sd/source/ui/sidebar/PageMarginUtils.hxx
Change-Id: Iccbd45d9c53dd6561a6161f9949d6fb9d8539514
Reviewed-on: https://gerrit.libreoffice.org/65923
Tested-by: Jenkins
Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'bin/find-unneeded-includes')
-rwxr-xr-x | bin/find-unneeded-includes | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/find-unneeded-includes b/bin/find-unneeded-includes index b7da51714bb0..28a5471eb0df 100755 --- a/bin/find-unneeded-includes +++ b/bin/find-unneeded-includes @@ -58,6 +58,7 @@ 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" } for k, v in bits.items(): if include == k and v in toAdd: |