diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2021-12-16 20:59:35 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2021-12-20 10:06:34 +0100 |
commit | 807f238f12e0774fabf507a17ca0ba9204d47833 (patch) | |
tree | 37f51c4539aa07ce707dcf81d2e9dc4e16186d15 /include/o3tl | |
parent | 309c8bd4fc5cc7034754b90d6306bbe4084be4d9 (diff) |
Recheck include/[e-r]* with IWYU
See tdf#42949 for motivation
Change-Id: I44e4e3a88067c1c29ce9d563b22741e984b43576
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126964
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'include/o3tl')
-rw-r--r-- | include/o3tl/cow_wrapper.hxx | 1 | ||||
-rw-r--r-- | include/o3tl/hash_combine.hxx | 4 | ||||
-rw-r--r-- | include/o3tl/string_view.hxx | 1 |
3 files changed, 4 insertions, 2 deletions
diff --git a/include/o3tl/cow_wrapper.hxx b/include/o3tl/cow_wrapper.hxx index ced27c1fda32..cc823f60ec57 100644 --- a/include/o3tl/cow_wrapper.hxx +++ b/include/o3tl/cow_wrapper.hxx @@ -23,7 +23,6 @@ #include <osl/interlck.h> #include <optional> -#include <utility> #include <cstddef> namespace o3tl diff --git a/include/o3tl/hash_combine.hxx b/include/o3tl/hash_combine.hxx index f56beda62672..48e14262228e 100644 --- a/include/o3tl/hash_combine.hxx +++ b/include/o3tl/hash_combine.hxx @@ -9,6 +9,10 @@ #pragma once +#include <cstddef> +#include <functional> +#include <type_traits> + namespace o3tl { template <typename T, typename N> diff --git a/include/o3tl/string_view.hxx b/include/o3tl/string_view.hxx index 4cb9790900f6..0ca26a829932 100644 --- a/include/o3tl/string_view.hxx +++ b/include/o3tl/string_view.hxx @@ -15,7 +15,6 @@ #include <cstddef> #include <string> #include <string_view> -#include <type_traits> #include <rtl/ustring.h> |