[Libreoffice-commits] online.git: wsd/AdminModel.hpp

Andras Timar (via logerrit) logerrit at kemper.freedesktop.org
Sun Feb 23 13:24:48 UTC 2020


 wsd/AdminModel.hpp |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit 01b476e7c04ff7b591beda57f99a1333c5486e2e
Author:     Andras Timar <andras.timar at collabora.com>
AuthorDate: Sun Feb 23 12:28:30 2020 +0100
Commit:     Andras Timar <andras.timar at collabora.com>
CommitDate: Sun Feb 23 14:24:30 2020 +0100

    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 at collabora.com>
    Reviewed-by: Andras Timar <andras.timar at collabora.com>

diff --git a/wsd/AdminModel.hpp b/wsd/AdminModel.hpp
index 99ff6f2c1..a3fb12fcc 100644
--- a/wsd/AdminModel.hpp
+++ b/wsd/AdminModel.hpp
@@ -14,6 +14,7 @@
 #include <set>
 #include <string>
 #include <cmath>
+#include <list>
 
 #include <Poco/Process.h>
 


More information about the Libreoffice-commits mailing list