diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-06-01 22:21:38 +0200 |
---|---|---|
committer | Michael Stahl <Michael.Stahl@cib.de> | 2019-06-03 11:12:03 +0200 |
commit | cef975478815369c5456e4ebc934fb855f358f83 (patch) | |
tree | 8303f6ed00542a063b4ae835db80d9c5e3d8f121 | |
parent | 1416c5426a757d32f223cab46bf9038bd7f21d48 (diff) |
find-unneeded-includes: don't propose to remove <map>...
..and replace with debug header if multimap is used.
As seen in include/svx/SmartTagMgr.hxx
Change-Id: If239cd6e9471f74f3035c659077ed7515a9df473
Reviewed-on: https://gerrit.libreoffice.org/73367
Tested-by: Jenkins
Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
-rwxr-xr-x | bin/find-unneeded-includes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/find-unneeded-includes b/bin/find-unneeded-includes index bea49fd7a267..9cce1cad1bdf 100755 --- a/bin/find-unneeded-includes +++ b/bin/find-unneeded-includes @@ -45,7 +45,7 @@ def ignoreRemoval(include, toAdd, absFileName, moduleRules): "deque": ("debug/deque", ), "forward_list": ("debug/forward_list", ), "list": ("debug/list", ), - "map": ("debug/map.h", ), + "map": ("debug/map.h", "debug/multimap.h"), "set": ("debug/set.h", "debug/multiset.h"), "unordered_map": ("debug/unordered_map", ), "unordered_set": ("debug/unordered_set", ), |