summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2020-02-23 12:28:30 +0100
committerAndras Timar <andras.timar@collabora.com>2020-04-10 17:47:19 +0200
commit69009228c16defff7cbb0d6de59400f3208a8fa7 (patch)
treed388e90b0397e410c9312df75569eda2d89b179c
parentff7fc02fbd91f050a7604968f739c994431c4595 (diff)
add missing #include <list>
on a fresh openSUSE Leap 15.1 I got errors without this: wsd/AdminModel.hpp:346:10: error: ‘list’ in namespace ‘std’ does not name a template type std::list<unsigned> _memStats; ^~~~ etc. Change-Id: I19c42bd48bbcc0787a3398d1882c974ebf5bdf81 Reviewed-on: https://gerrit.libreoffice.org/c/online/+/89298 Tested-by: Andras Timar <andras.timar@collabora.com> Reviewed-by: Andras Timar <andras.timar@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/c/online/+/92045 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
-rw-r--r--wsd/AdminModel.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/wsd/AdminModel.hpp b/wsd/AdminModel.hpp
index 61c1b275d..4c22182ba 100644
--- a/wsd/AdminModel.hpp
+++ b/wsd/AdminModel.hpp
@@ -13,6 +13,7 @@
#include <memory>
#include <set>
#include <string>
+#include <list>
#include <Poco/Process.h>