aboutsummaryrefslogtreecommitdiffstats
path: root/src/output/HttpdClient.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-01-04 17:07:24 +0100
committerMax Kellermann <max@duempel.org>2014-01-04 17:12:59 +0100
commit8e4efd071e8eef033d0a68f6cf60f3910599a1a9 (patch)
tree3cd26c8cc463593633b7dac3339095d5e08e4e55 /src/output/HttpdClient.hxx
parentf2ad9f6fadb9d070863a8a5c76b85c884943502a (diff)
downloadmpd-8e4efd071e8eef033d0a68f6cf60f3910599a1a9.tar.gz
mpd-8e4efd071e8eef033d0a68f6cf60f3910599a1a9.tar.xz
mpd-8e4efd071e8eef033d0a68f6cf60f3910599a1a9.zip
output/httpd: wrap the std::list in std::queue
Diffstat (limited to 'src/output/HttpdClient.hxx')
-rw-r--r--src/output/HttpdClient.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/output/HttpdClient.hxx b/src/output/HttpdClient.hxx
index 7b83bca33..72a5224ca 100644
--- a/src/output/HttpdClient.hxx
+++ b/src/output/HttpdClient.hxx
@@ -23,6 +23,7 @@
#include "event/BufferedSocket.hxx"
#include "Compiler.h"
+#include <queue>
#include <list>
#include <stddef.h>
@@ -53,7 +54,7 @@ class HttpdClient final : BufferedSocket {
/**
* A queue of #Page objects to be sent to the client.
*/
- std::list<Page *> pages;
+ std::queue<Page *, std::list<Page *>> pages;
/**
* The sum of all page sizes in #pages.