aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-04 14:44:06 +0100
committerMax Kellermann <max@duempel.org>2013-01-04 14:44:06 +0100
commit15a4246ead3cceef7db63f12f48792d3fb0aa29b (patch)
treee2c2c7498323a5724b9249c2b55b5959d625e78b /src
parent9a71845700e132b3e3fe5920aac24a5420c5d7b3 (diff)
Client, Inotify: use std::list instead of std::deque
Random access is not necessary here.
Diffstat (limited to 'src')
-rw-r--r--src/ClientInternal.hxx4
-rw-r--r--src/InotifyQueue.cxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/ClientInternal.hxx b/src/ClientInternal.hxx
index f8944b65..5e41333e 100644
--- a/src/ClientInternal.hxx
+++ b/src/ClientInternal.hxx
@@ -27,7 +27,7 @@
#include <set>
#include <string>
-#include <deque>
+#include <list>
#include <glib.h>
@@ -97,7 +97,7 @@ public:
/**
* A list of messages this client has received.
*/
- std::deque<ClientMessage> messages;
+ std::list<ClientMessage> messages;
Client(struct player_control *player_control,
int fd, int uid, int num);
diff --git a/src/InotifyQueue.cxx b/src/InotifyQueue.cxx
index a2e21272..0d19ff08 100644
--- a/src/InotifyQueue.cxx
+++ b/src/InotifyQueue.cxx
@@ -21,7 +21,7 @@
#include "InotifyQueue.hxx"
#include "UpdateGlue.hxx"
-#include <deque>
+#include <list>
#include <string>
#include <glib.h>
@@ -40,7 +40,7 @@ enum {
INOTIFY_UPDATE_DELAY_S = 5,
};
-static std::deque<std::string> inotify_queue;
+static std::list<std::string> inotify_queue;
static guint queue_source_id;
void