]> git.sesse.net Git - cubemap/blobdiff - stream.h
Run include-what-you-use.
[cubemap] / stream.h
index efedc9b404a7f3c71e90fbb4fdb412e7ac58f5e5..ea13f40bd6258dffe1e9a22619d889688e97fd9e 100644 (file)
--- a/stream.h
+++ b/stream.h
@@ -4,13 +4,14 @@
 // Representation of a single, muxed (we only really care about bytes/blocks) stream.
 // Fed by Input, sent out by Server (to Client).
 
+#include <stddef.h>
 #include <stdint.h>
 #include <string>
 #include <vector>
 
-struct Client;
 class MarkPool;
 class StreamProto;
+struct Client;
 
 struct Stream {
        Stream(const std::string &stream_id, size_t backlog_size);