diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-05-22 00:07:23 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-05-30 09:00:54 +0200 |
commit | c329a1c11299b999152b45343961e79e66be405a (patch) | |
tree | b164982a21a7c36181c97bf298a8504169d3efef /helpcompiler/source/HelpCompiler.cxx | |
parent | 69236a7aa17da34399e4d204ddb659d67a51fbf4 (diff) |
tdf#42949 Fix IWYU warnings in helpcompiler/
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: Ie7e20c77a8035c0ee4f0316966d163b9cd7d11f2
Reviewed-on: https://gerrit.libreoffice.org/73006
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'helpcompiler/source/HelpCompiler.cxx')
-rw-r--r-- | helpcompiler/source/HelpCompiler.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/helpcompiler/source/HelpCompiler.cxx b/helpcompiler/source/HelpCompiler.cxx index b612071aba18..70159a2c65fd 100644 --- a/helpcompiler/source/HelpCompiler.cxx +++ b/helpcompiler/source/HelpCompiler.cxx @@ -18,16 +18,15 @@ */ +#include <algorithm> #include <memory> #include <HelpCompiler.hxx> #include <BasCodeTagger.hxx> -#include <limits.h> +#include <iostream> #include <stdlib.h> #include <string.h> -#include <libxslt/xslt.h> #include <libxslt/xsltInternals.h> #include <libxslt/transform.h> -#include <libxslt/xsltutils.h> #include <osl/thread.hxx> #include <chrono> #include <rtl/character.hxx> |