]> git.stg.codes - stg.git/blobdiff - stargazer/plugins/authorization/ao/ao.h
Remove some more std::list.
[stg.git] / stargazer / plugins / authorization / ao / ao.h
index bf1cbe6be83188e81cddf48d958f6fb73379cdbd..31209f11cb7b81ff5206d7071230b28e30fdcd68 100644 (file)
@@ -30,6 +30,7 @@
 #include <pthread.h>
 
 #include <string>
+#include <vector>
 #include <list>
 
 #include "stg/auth.h"
@@ -114,7 +115,7 @@ private:
 
     mutable std::string errorStr;
     USERS *             users;
-    std::list<USER_PTR> usersList;
+    std::vector<USER_PTR> userList;
     bool                isRunning;
     MODULE_SETTINGS     settings;