diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2023-12-23 09:17:48 +0100 |
---|---|---|
committer | Gabor Kelemen <kelemeng@ubuntu.com> | 2023-12-24 11:50:26 +0100 |
commit | f8cd2837493ebcab1ff485e00bfc9181779b49d8 (patch) | |
tree | a7e52a3e8bfba4be5eb107d8593599eac2946c73 /include/framework | |
parent | 7606097a734ec1f32bb2e3968b44305649523053 (diff) |
Rewrite bin/find-unusedheaders.py
This script was broken, not only in the implementation
(it gives too many false positives in a suspiciously short, <1s time)
but in its approach as well: only considering stuff that is compiled
under Linux inherently leaves out other platform specific or experimental
stuff.
Rewrite it using another approach: grep for mentions of each
header in the modules or global ones in include/ everywhere.
Runtime of this script is about 15 minutes, seems to give only
a few relevant hits.
Change-Id: Ifb92f41f11ca9a2bf14eec617a469003becb78fa
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161234
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen <kelemeng@ubuntu.com>
Diffstat (limited to 'include/framework')
-rw-r--r-- | include/framework/transactionmanager.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/framework/transactionmanager.hxx b/include/framework/transactionmanager.hxx index fe011968cf32..026b6caf50bc 100644 --- a/include/framework/transactionmanager.hxx +++ b/include/framework/transactionmanager.hxx @@ -21,7 +21,7 @@ #include <mutex> -#include "gate.hxx" +#include <framework/gate.hxx> namespace framework{ |