summaryrefslogtreecommitdiff
path: root/include/rtl
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2019-01-09 15:05:42 +0100
committerStephan Bergmann <sbergman@redhat.com>2019-01-10 08:27:27 +0100
commite00d5f21fe7be1ccf31d35c12dcdda289321590e (patch)
treebde99313b21b86fef829706412c937bd32748fc1 /include/rtl
parentdac7be50cff94e0c34cdca5ac7e35c19685c40c1 (diff)
Revert "tdf#42949 Fix IWYU warnings in include/rtl/*"
This partilally reverts commit 55ca35ab99fb1164cb2095384ed0937a533d9d3c, the removal of <utility> was not correct, std::move() still requires it. Change-Id: I1f905e332874b0aa72f537e37251f822258577d6 Reviewed-on: https://gerrit.libreoffice.org/66033 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/rtl')
-rw-r--r--include/rtl/string.hxx1
-rw-r--r--include/rtl/ustring.hxx1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/rtl/string.hxx b/include/rtl/string.hxx
index b26aa23e556a..c60cb8d837bb 100644
--- a/include/rtl/string.hxx
+++ b/include/rtl/string.hxx
@@ -26,6 +26,7 @@
#include <cstddef>
#include <new>
#include <ostream>
+#include <utility>
#include <string.h>
#if defined LIBO_INTERNAL_ONLY
diff --git a/include/rtl/ustring.hxx b/include/rtl/ustring.hxx
index bf63efc71723..c6e3760838ce 100644
--- a/include/rtl/ustring.hxx
+++ b/include/rtl/ustring.hxx
@@ -26,6 +26,7 @@
#include <cstddef>
#include <new>
#include <ostream>
+#include <utility>
#if defined LIBO_INTERNAL_ONLY
#include <string_view>